By Jeff Musa
This is a simple web clone of the instagram website. A user can create an account and sign into it. The site supports uploading images, and commenting on what other users have uploaded. users can view photos uploaded by other users in the home page of app.
Find the specs here
- Ubuntu Software
- Python3.6
- Postgres
- python virtualenv
Run the following command on the terminal:
git clone https://github.com/jeffmusa/InstaBoom.git && cd InstaBoom
Activate virtual environment using python3.6 as default handler
virtualenv -p /usr/bin/python3.6 venv && source venv/bin/activateInstall dependancies that will create an environment for the app to run
pip3 install -r requirements.txt
psql
CREATE DATABASE insta;Create .env file and paste paste the following filling where appropriate:
SECRET_KEY = '<Secret_key>'
DBNAME = 'insta'
USER = '<Username>'
PASSWORD = '<password>'
DEBUG = True
EMAIL_USE_TLS = True
EMAIL_HOST = 'smtp.gmail.com'
EMAIL_PORT = 587
EMAIL_HOST_USER = '<your-email>'
EMAIL_HOST_PASSWORD = '<your-password>'python3.6 manage.py makemigrations gram
python3.6 manage.py migratepython3.6 manage.py runserverOpen terminal on localhost:8000
Like and Follow functionality does not work
- Python 3.6
- HTML
- Bootstrap 4
- JavaScript
- Heroku
- Postgresql
Contact me on jeffmusa05@gmail.com for any comments, reviews or advice.
Copyright (c) Jeff Musa