The repo is a starting point for anyone who wants to develop a Flask server.
Note: This is for Mac users only. If you develop on Windows. Use equivalent commands or contact Robert for help.
- Get Python3 on your computer
- Make a virtual environment. It's only done once.
Command: python3 -m venv env - Activate the virtual environment you just made.
Command: source env/bin/activate - Install requirements. The step is done everytime you add a library.
Command: pip3 install -r requirements.txt - Start the server.
Command: python3 app.py