File tree Expand file tree Collapse file tree 2 files changed +15
-1
lines changed Expand file tree Collapse file tree 2 files changed +15
-1
lines changed Original file line number Diff line number Diff line change 1
1
# simple_django_app
2
- A simple app for testing out Django framework
2
+ A simple app using Django framework, based off [ Understanding Django in 30 minutes] ( https://www.youtube.com/watch?v=IMG4r03G6g8 ) by @eduonix .
3
+
4
+ # Quick-Start
5
+ 1 . Open your terminal in an empty directory.
6
+ ``` shell
7
+ git clone https://github.com/org-not-included/simple_django_app
8
+ cd simple_django_app
9
+ source setup.sh
10
+ ```
11
+ 2 . In your web-browser, go to http://127.0.0.1:8000/admin/ .
12
+ 3 . Sign in with credentials used in ` setup.sh ` .
13
+ 4 . Build it yourself, after watching the 30 minute video.
Original file line number Diff line number Diff line change @@ -26,5 +26,8 @@ django-admin startproject simple_app .
26
26
# Initialize DB storage
27
27
python3 manage.py migrate
28
28
29
+ # Create user
30
+ python3 manage.py createsuperuser
31
+
29
32
# Start server
30
33
python3 manage.py runserver
You can’t perform that action at this time.
0 commit comments