By Utsav Raj
The project aimed to create a web app that allows users to upload images and view them in a gallery-like format. Django was chosen for its ease of development and robust features.
STEPS TO USE:
1. First Download the source Code after that save in a folder , Prior to that make a virtual environment then install django in it.
2. django-admin startproject used to make project directory and djano-admin startapp to make app inside project and then we need to write app name in setting file inside installed app section.
3. After this you need to set up all the file in same manner as it has been kept in the file you have downloaded.
4. Make a super user or you can call admin using command python manage.py createsuperuser.
5. You need to use this command to make changes in admin panel python manage.py makemigrations python manage.py migrate
6. After doing all this you are good to go . Use python mange.py runserver to start the app.
Submitted by Utsav Raj (utsav04)
Download packets of source code on Coders Packet
Comments