Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/abdullahrfa/django_project
https://github.com/abdullahrfa/django_project
Last synced: 3 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/abdullahrfa/django_project
- Owner: AbdullahRFA
- Created: 2025-01-18T16:00:01.000Z (9 days ago)
- Default Branch: main
- Last Pushed: 2025-01-18T17:12:49.000Z (9 days ago)
- Last Synced: 2025-01-18T18:19:14.464Z (9 days ago)
- Language: Python
- Size: 8.79 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# for setting up virtual environment
python3 -m venv .venv
# for activate path
source .venv/bin/activate
# for installing django framework
pip install djangorestframework
# for starting django app
python3 manage.py startapp home
## if change anything in database schema
python3 manage.py makemigrations
# for migrating default table for auth
python3 manage.py migrate
# for creating super user
python3 manage.py createsuperuser
username:Abdullah
email:[email protected]
pass;1234# for changing django administration text
### add below text in your project urls.py
admin.site.site_header = "Abdullah ICE Cream Admin"
admin.site.site_title = "Abdullah ICE Cream Admin Portal"
admin.site.index_title = "Welcome to Abdullah ICE Cream"