Skip to content

Commit 9f66e60

Browse files
committed
Remove setup app and VSCode files
1 parent 93895d4 commit 9f66e60

16 files changed

+1
-163
lines changed

.gitignore

+1-1
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ cython_debug/
126126
.idea/
127127

128128
# VSCode
129-
# .vscode
129+
.vscode
130130

131131
# System
132132
.DS_Store

.vscode/launch.json

-19
This file was deleted.

.vscode/settings.json

-8
This file was deleted.

.vscode/tasks.json

-65
This file was deleted.

README.md

-1
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,6 @@ docker run -it --rm -v sqlite:/sqlite django-docker-template:master python manag
7575
```console
7676
docker run -it --rm -p 8000:8000 -v sqlite:/sqlite -v $(pwd)/website:/usr/src/website django-docker-template:master python manage.py runserver 0.0.0.0:8000
7777
```
78-
If using VSCode, you may launch the debugpy tool into your development server by running "Simple Debug" from the Run and Debug tab of the IDE.
7978

8079
Now you can go to [http://127.0.0.1:8000/admin/](http://127.0.0.1:8000/admin/) in your browser. Go to the Django admin panel and try updating the server code "on the fly".
8180
Everything works just like if you were running the Django development server outside the container.

website/setup/__init__.py

Whitespace-only changes.

website/setup/admin.py

-3
This file was deleted.

website/setup/apps.py

-6
This file was deleted.

website/setup/management/__init__.py

Whitespace-only changes.

website/setup/management/commands/__init__.py

Whitespace-only changes.

website/setup/management/commands/safecreatesuperuser.py

-50
This file was deleted.

website/setup/migrations/__init__.py

Whitespace-only changes.

website/setup/models.py

-3
This file was deleted.

website/setup/tests.py

-3
This file was deleted.

website/setup/views.py

-3
This file was deleted.

website/website/settings.py

-1
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,6 @@
5151
"django.contrib.sessions",
5252
"django.contrib.messages",
5353
"django.contrib.staticfiles",
54-
"setup.apps.SetupConfig",
5554
"polls.apps.PollsConfig",
5655
]
5756

0 commit comments

Comments
 (0)