Skip to content

Commit 1bef209

Browse files
committed
start project jai charbhujay namah
1 parent 9444de2 commit 1bef209

File tree

6 files changed

+16
-46
lines changed

6 files changed

+16
-46
lines changed

README.md

-45
This file was deleted.

__init__.py fosstack/__init__.py

File renamed without changes.

settings.py fosstack/settings.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
# See https://docs.djangoproject.com/en/2.0/howto/deployment/checklist/
2121

2222
# SECURITY WARNING: keep the secret key used in production secret!
23-
SECRET_KEY = 'x%*=30tvu()@!)i-#$n65ynue&&l)78z4b0apodl$iqvzpt9dj'
23+
SECRET_KEY = '(nvt1yya(pzyv=^s!94jsk@7(ebaly2&n84@sh64(c+9v!p+_f'
2424

2525
# SECURITY WARNING: don't run with debug turned on in production!
2626
DEBUG = True

urls.py fosstack/urls.py

File renamed without changes.

wsgi.py fosstack/wsgi.py

File renamed without changes.

manage.py

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
#!/usr/bin/env python
2+
import os
3+
import sys
4+
5+
if __name__ == "__main__":
6+
os.environ.setdefault("DJANGO_SETTINGS_MODULE", "fosstack.settings")
7+
try:
8+
from django.core.management import execute_from_command_line
9+
except ImportError as exc:
10+
raise ImportError(
11+
"Couldn't import Django. Are you sure it's installed and "
12+
"available on your PYTHONPATH environment variable? Did you "
13+
"forget to activate a virtual environment?"
14+
) from exc
15+
execute_from_command_line(sys.argv)

0 commit comments

Comments
 (0)