A social blog app for posting and commenting pics.
-
Create a new directory
mkdir Instagram cd Instagram
-
Create a virtual environment with venv (install virtualenv, if its not installed).
sudo apt-get install python3-venv python3 -m venv env
-
Clone the project in the virtual environment directory.
git clone https://github.com/lugnitdgp/Instagram.git
-
Activate the virtual environemnt.
source env/bin/activate
.\Scripts\activate
-
Install the requirements.
cd Instagram pip install -r requirements.txt
-
Run the Migrations
python manage.py makemigrations python manage.py migrate
-
Run the development server
python manage.py runserver
-
Head to server http://127.0.0.1:8000
-
Add Posts, Comments
Instagram uses the following technologies:
- HTML/CSS/JavaScript
- Python(Django)
If you want to contribute to this project, then have a look here