Skip to content

Latest commit

 

History

History
25 lines (17 loc) · 428 Bytes

File metadata and controls

25 lines (17 loc) · 428 Bytes

nwhacks2023-backend

Requirements

All you need is Python >= 3.8 and the pip package management system.

Local Setup

# Install virtual environment package if not already installed
pip install virtualenv

# Create virtual environment folder
python -m venv venv

# Activate virtual environment
# Windows
.\venv\Scripts\activate

# Mac/Linux
source venv/scripts/activate

# Run the flask app
flask --debug run