Skip to content
This repository was archived by the owner on Dec 27, 2022. It is now read-only.

Commit 5f04469

Browse files
committed
Initial Commit
0 parents  commit 5f04469

File tree

14 files changed

+284
-0
lines changed

14 files changed

+284
-0
lines changed

Pipfile

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
[[source]]
2+
url = "https://pypi.org/simple"
3+
verify_ssl = true
4+
name = "pypi"
5+
6+
[packages]
7+
django = "*"
8+
9+
[dev-packages]
10+
11+
[requires]
12+
python_version = "3.10"

Pipfile.lock

Lines changed: 45 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

README.md

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
# djangoTutorial
2+
3+
## To get started
4+
```
5+
pip install django
6+
```
7+
8+
```
9+
pip install pipenv
10+
```
11+
12+
### In the folder - Create skeleton
13+
```
14+
pipenv install django
15+
```
16+
17+
```
18+
django-admin startproject djangoProject .
19+
```
20+
21+
### Run
22+
23+
```ps
24+
python manage.py runserver
25+
```
26+
It should look like this at [localhost:8000](localhost:8000)
27+
![image](https://user-images.githubusercontent.com/76637730/187042587-0955dd48-d46e-46fd-8844-3fa342340dbb.png)
28+
29+

db.sqlite3

Whitespace-only changes.

djangoProject/__init__.py

Whitespace-only changes.
170 Bytes
Binary file not shown.
2.26 KB
Binary file not shown.
953 Bytes
Binary file not shown.
585 Bytes
Binary file not shown.

djangoProject/asgi.py

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
"""
2+
ASGI config for djangoProject project.
3+
4+
It exposes the ASGI callable as a module-level variable named ``application``.
5+
6+
For more information on this file, see
7+
https://docs.djangoproject.com/en/4.0/howto/deployment/asgi/
8+
"""
9+
10+
import os
11+
12+
from django.core.asgi import get_asgi_application
13+
14+
os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'djangoProject.settings')
15+
16+
application = get_asgi_application()

0 commit comments

Comments
 (0)