A simple Twitter clone. Responsive, without using CSS framework.
Python3PostgresqlNode.jswithNode-Sass
- Clone this repository:
git clone https://github.com/espinoza/fakeTwitter - Enter the directory:
cd fakeTwitter - Create virtual environment:
python3 -m venv .venv - Activate virtual environment:
source .venv/bin/activate - Install Python packages:
pip install -r requirements.txt - Create Postgresql database:
NAME: fake_twitter,USER: postgres,PASSWORD: root - Migrate database:
python manage.py migrate - Compile CSS files:
node-sass assets/scss -o main/static/css - Run server:
python manage runserver - Open a browser and go to
http://localhost:8000


