Skip to content

Latest commit

 

History

History
43 lines (34 loc) · 624 Bytes

README.md

File metadata and controls

43 lines (34 loc) · 624 Bytes

cli-blg

Microblogging from the command line!

Still WIP

Project picked back up recently: Gantt diagram

Setting up the backend

  1. Create virtual environment

On Windows

# Create a virtual environment
cd backend
python -m venv env

# Activate the virtual environment
env\Scripts\activate

On MacOs/Linux

# Create a virtual environment
python3 -m venv env

# Activate the virtual environment
source env/bin/activate
  1. Install dependencies.
pip install -r requirements.txt
  1. Start Flask server.
flask --app app run

Debug mode

flask --app app run --debug