-
Clone the repository:
git clone https://github.com/Jace-Tech/flask_setup.git <server>
Replace
<server>
with the name of your project -
Navigate to the project directory:
cd server
-
Create a virtual enviroment
# In Windows
py -m venv venv
# In Unix (Mac | Linux)
python3 -m venv venv
-
Install the required packages using pip:
pip install -r requirements.txt
-
Create a new
.env
file in the root of your directory, and then add in all the variables from the.env.examples
with the appropriate values -
Finally, run the app with
gunicorn --workers=2 'app:create_app()'
or
# Windows
py app.py
#Unix
python3 app.py