This is a clone of the instagram app
Clone the the repository by running
git clone https://github.com/moharick/Instakilo.git
or download a zip file of the project from github
Navigate to the project directory
cd Instakilo
Install Virtualenv
pip install virtualenv
To create a virtual environment named virtual
, run
virtualenv virtual
To activate the virtual environment we just created, run
source virtual/bin/activate
You'll need to create a new postgress database, Type the following command to access postgress
$ psql
Then run the following query to create a new database named gallery
# create database gallery
To install the requirements from requirements.txt
file,
pip install -r requirements.txt
Making migrations on postgres using django
python manage.py makemigrations gallery
then run the command below;
python manage.py migrate
To run the application on your development machine,
python3 manage.py runserver
To run tests;
python manage.py test
- Django
- Python
- Html
- Css
- Javascript
- Bootstrap
As a user of the application I should be able to:
- Sign in to the application to start using.
- Upload my pictures to the application.
- See my profile with all my pictures.
- Follow other users and see their pictures on my timeline.
- Like a picture and leave a comment on it.
There are no known bugs at the moment
MIT license © 2019 Moharick
- Clone the repository
- Make changes and write tests
- Push changes to github
- Create a pull request
Send me an email to collaborate on the project.