https://github.com/zero1max/registering-in-django
https://github.com/zero1max/registering-in-django
django django-rest-framework postgresql python sqlite3
Last synced: about 1 month ago
JSON representation
- Host: GitHub
- URL: https://github.com/zero1max/registering-in-django
- Owner: zero1max
- Created: 2025-01-09T02:57:57.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2025-01-23T04:59:12.000Z (over 1 year ago)
- Last Synced: 2025-01-23T05:30:21.556Z (over 1 year ago)
- Topics: django, django-rest-framework, postgresql, python, sqlite3
- Language: Python
- Homepage:
- Size: 32.2 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Registering-in-Django
First
Create virtual environment:
python -m venv venv
Second
Activate virtual environment:
venv\Scripts\activate
Third
Install requirements.txt:
pip install -r requirements.txt
Fourth
Enter core folder:
cd core
Fifth
Makemigrations:
python manage.py makemigrations
Sixth
Migrate database:
python manage.py migrate
Seventh
Create superuser:
python manage.py createsuperuser
Eighth
Run development server:
python manage.py runserver
Now you can access the website on http://127.0.0.1:8000/