Skip to content

Latest commit

 

History

History
14 lines (10 loc) · 658 Bytes

README.md

File metadata and controls

14 lines (10 loc) · 658 Bytes

SIT-x-GDSC-Code-Overflow-Pre-Workshop

Flask, Jinja2 and SQL

Setting Up Production Environment

Open cmd and run the following commands:

  1. python -m venv .venv (for Windows) / python3 -m venv .venv (for macOS)
  2. .venv\scripts\activate (for Windows) / source .venv/bin/activate (for macOS)
  3. pip install -r requirements.txt
  4. python app.py (to run the flask app)

Here's the Workshop Guide Doc to follow through

For the complete code, here's the GitHub Repository