Skip to content

Latest commit

 

History

History
27 lines (14 loc) · 508 Bytes

README.md

File metadata and controls

27 lines (14 loc) · 508 Bytes

Stack Overflow Clone

A simple Stack Overflow clone with Flask.

Getting Started

  • Clone the repo

  • Create a virtual env python3 -m venv venv and activate . venv/bin/activate

  • Install dependecies pip install -r requirements.txt

  • Create a .env file and add values from .env_example

  • Source the environment variables source .env

  • Run migrations flask db upgrade

  • Start server locally flask run or python main.py

  • Run tests pytest --cov

Tools

  • Flask

  • Postgres