A Simple yet Complete Instagram Clone built with Flask and React.
To run this project, you would need:
- python3
- node js and npm
- bash or any other CLI
To make this work locally:
- Click on
Code
>Download Zip
and Extract it - Navigate to the root folder (directly inside Instagram-Clone-master) and open it in Visual Studio Code (or any other modern text editor)
- Open terminal in visual studio code (Ctrl+Shift+`)
- Make a venv (virtual environment) using:
python3 -m venv venv
source venv/bin/activate
pip install -r requirements.txt
export FLASK_APP=manage.py
flask db init
flask db migrate
flask db upgrade
- Finally, run the local server using:
python manage.py
- Then visit http://localhost:5000/ in a browser