Assignment for Django developer internship
This project requires Python3 and Django to build, if they are not installed on your device, you should install them first.
pip install -r requirements.txt
If you have done the setup before; skip to Starting the local server
./manage.py makemigrations shop
./manage.py migrate
./manage.py createsuperuser
Then follow the instructions on your command line terminal to create a superuser account.
./manage.py loaddata dummyData.json
./manage.py runserver
./manage.py test
The website can be accessed by visiting the URL localhost:8000
Server admin dashboard can be accessed by visiting the URL localhost:8000/admin
├── go2people :global project
│ ├── settings.py :global settings
│ └── urls.py :global urls
├── manage.py :Django's CLI utility
├── media :media storage location
├── shop :shop app
│ ├── apps.py :app config
│ ├── admin.py :app admin config
│ ├── models.py :models
│ ├── tests.py :unit tests
│ ├── urls.py :app urls
│ └── views.py :app views
├── templates :app html templates
└── db.sqlite3 :project database