A website that helps you locate the best cafe to work from https://workeazy.herokuapp.com/
The application is a fullstack application I used:
- Flask for the backend
- HTML, CSS and Bootstrap for the frontend.
The main.py contains a completed Flask Server.
- Python. I used version 3.9 for this project. Here's the instruction to install python
- I recommend working within a virtual environment whenever using Python for projects. This keeps your dependencies for each project separate and organized. Instructions for setting up a virtual environment for your platform can be found in the python docs
- PIP Dependencies - Once your virtual environment is up and running, install the required dependencies by running:
pip install -r requirements.txt
- Flask is a lightweight backend microservices framework. Flask is required to handle requests and responses.
- SQLAlchemy is the Python SQL toolkit and ORM I used to handle the lightweight SQL database
for Linux users: execute:
$ export FLASK_APP = "main.py"
for windows cmd:
FLASK_APP=main.py
flask run --reload