A Twitter-like app for users to view blog posts & its replies, and reply to comments. This app implements Python-Flask, HTML/CSS, & Postgres.
- Clone this repo:
git clone <this repo's remote url> - Change directories:
cd gateway_project - Create a virtual environment for this project and activate it:
mkdir env
python3 -m venv env
source env/bin/activate
- Install the requirements:
pip install -r requirements.txt - If you haven't done so already, create a database named
twitterish - Run
python app/db.pyas needed to create and seed your database tables - Run the application as needed:
python app/app.py