Skip to content

Commit 3a46186

Browse files
added readme
1 parent 98f85d4 commit 3a46186

File tree

2 files changed

+15
-1
lines changed

2 files changed

+15
-1
lines changed

README.md

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,13 @@
11
# 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.

setup.sh

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,5 +26,8 @@ django-admin startproject simple_app .
2626
# Initialize DB storage
2727
python3 manage.py migrate
2828

29+
# Create user
30+
python3 manage.py createsuperuser
31+
2932
# Start server
3033
python3 manage.py runserver

0 commit comments

Comments
 (0)