Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
T
tanyayotoko_music
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Tanya Yotoko
tanyayotoko_music
Commits
a0212749
Commit
a0212749
authored
Feb 13, 2023
by
Tanya
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
created homepage, about, and contact apps
parent
49e82cb4
Changes
28
Show whitespace changes
Inline
Side-by-side
Showing
28 changed files
with
60 additions
and
2 deletions
+60
-2
.env
tanyayotoko_music/.env
+2
-0
__init__.py
tanyayotoko_music/about/__init__.py
+0
-0
admin.py
tanyayotoko_music/about/admin.py
+3
-0
apps.py
tanyayotoko_music/about/apps.py
+6
-0
__init__.py
tanyayotoko_music/about/migrations/__init__.py
+0
-0
models.py
tanyayotoko_music/about/models.py
+3
-0
tests.py
tanyayotoko_music/about/tests.py
+3
-0
views.py
tanyayotoko_music/about/views.py
+3
-0
__init__.py
tanyayotoko_music/contact/__init__.py
+0
-0
admin.py
tanyayotoko_music/contact/admin.py
+3
-0
apps.py
tanyayotoko_music/contact/apps.py
+6
-0
__init__.py
tanyayotoko_music/contact/migrations/__init__.py
+0
-0
models.py
tanyayotoko_music/contact/models.py
+3
-0
tests.py
tanyayotoko_music/contact/tests.py
+3
-0
views.py
tanyayotoko_music/contact/views.py
+3
-0
db.sqlite3
tanyayotoko_music/db.sqlite3
+0
-0
__init__.py
tanyayotoko_music/homepage/__init__.py
+0
-0
admin.py
tanyayotoko_music/homepage/admin.py
+3
-0
apps.py
tanyayotoko_music/homepage/apps.py
+6
-0
__init__.py
tanyayotoko_music/homepage/migrations/__init__.py
+0
-0
models.py
tanyayotoko_music/homepage/models.py
+3
-0
tests.py
tanyayotoko_music/homepage/tests.py
+3
-0
views.py
tanyayotoko_music/homepage/views.py
+3
-0
__init__.cpython-38.pyc
...sic/tanyayotoko_music/__pycache__/__init__.cpython-38.pyc
+0
-0
settings.cpython-38.pyc
...sic/tanyayotoko_music/__pycache__/settings.cpython-38.pyc
+0
-0
urls.cpython-38.pyc
...o_music/tanyayotoko_music/__pycache__/urls.cpython-38.pyc
+0
-0
wsgi.cpython-38.pyc
...o_music/tanyayotoko_music/__pycache__/wsgi.cpython-38.pyc
+0
-0
settings.py
tanyayotoko_music/tanyayotoko_music/settings.py
+4
-2
No files found.
tanyayotoko_music/.env
View file @
a0212749
SECRET_KEY = 'django-insecure-pb(*)pgeb#wtpf&*(re9u0)o+q$frp9jq6i8nx=7q5_*g6_2$+'
STATIC_ROOT='<folder path of where static items>'
\ No newline at end of file
tanyayotoko_music/about/__init__.py
0 → 100644
View file @
a0212749
tanyayotoko_music/about/admin.py
0 → 100644
View file @
a0212749
from
django.contrib
import
admin
# Register your models here.
tanyayotoko_music/about/apps.py
0 → 100644
View file @
a0212749
from
django.apps
import
AppConfig
class
AboutConfig
(
AppConfig
):
default_auto_field
=
'django.db.models.BigAutoField'
name
=
'about'
tanyayotoko_music/about/migrations/__init__.py
0 → 100644
View file @
a0212749
tanyayotoko_music/about/models.py
0 → 100644
View file @
a0212749
from
django.db
import
models
# Create your models here.
tanyayotoko_music/about/tests.py
0 → 100644
View file @
a0212749
from
django.test
import
TestCase
# Create your tests here.
tanyayotoko_music/about/views.py
0 → 100644
View file @
a0212749
from
django.shortcuts
import
render
# Create your views here.
tanyayotoko_music/contact/__init__.py
0 → 100644
View file @
a0212749
tanyayotoko_music/contact/admin.py
0 → 100644
View file @
a0212749
from
django.contrib
import
admin
# Register your models here.
tanyayotoko_music/contact/apps.py
0 → 100644
View file @
a0212749
from
django.apps
import
AppConfig
class
ContactConfig
(
AppConfig
):
default_auto_field
=
'django.db.models.BigAutoField'
name
=
'contact'
tanyayotoko_music/contact/migrations/__init__.py
0 → 100644
View file @
a0212749
tanyayotoko_music/contact/models.py
0 → 100644
View file @
a0212749
from
django.db
import
models
# Create your models here.
tanyayotoko_music/contact/tests.py
0 → 100644
View file @
a0212749
from
django.test
import
TestCase
# Create your tests here.
tanyayotoko_music/contact/views.py
0 → 100644
View file @
a0212749
from
django.shortcuts
import
render
# Create your views here.
tanyayotoko_music/db.sqlite3
0 → 100644
View file @
a0212749
tanyayotoko_music/homepage/__init__.py
0 → 100644
View file @
a0212749
tanyayotoko_music/homepage/admin.py
0 → 100644
View file @
a0212749
from
django.contrib
import
admin
# Register your models here.
tanyayotoko_music/homepage/apps.py
0 → 100644
View file @
a0212749
from
django.apps
import
AppConfig
class
HomepageConfig
(
AppConfig
):
default_auto_field
=
'django.db.models.BigAutoField'
name
=
'homepage'
tanyayotoko_music/homepage/migrations/__init__.py
0 → 100644
View file @
a0212749
tanyayotoko_music/homepage/models.py
0 → 100644
View file @
a0212749
from
django.db
import
models
# Create your models here.
tanyayotoko_music/homepage/tests.py
0 → 100644
View file @
a0212749
from
django.test
import
TestCase
# Create your tests here.
tanyayotoko_music/homepage/views.py
0 → 100644
View file @
a0212749
from
django.shortcuts
import
render
# Create your views here.
tanyayotoko_music/tanyayotoko_music/__pycache__/__init__.cpython-38.pyc
0 → 100644
View file @
a0212749
File added
tanyayotoko_music/tanyayotoko_music/__pycache__/settings.cpython-38.pyc
0 → 100644
View file @
a0212749
File added
tanyayotoko_music/tanyayotoko_music/__pycache__/urls.cpython-38.pyc
0 → 100644
View file @
a0212749
File added
tanyayotoko_music/tanyayotoko_music/__pycache__/wsgi.cpython-38.pyc
0 → 100644
View file @
a0212749
File added
tanyayotoko_music/tanyayotoko_music/settings.py
View file @
a0212749
...
...
@@ -9,8 +9,10 @@ https://docs.djangoproject.com/en/4.1/topics/settings/
For the full list of settings and their values, see
https://docs.djangoproject.com/en/4.1/ref/settings/
"""
import
os
from
pathlib
import
Path
from
dotenv
import
load_dotenv
load_dotenv
()
# Build paths inside the project like this: BASE_DIR / 'subdir'.
BASE_DIR
=
Path
(
__file__
)
.
resolve
()
.
parent
.
parent
...
...
@@ -20,7 +22,7 @@ BASE_DIR = Path(__file__).resolve().parent.parent
# See https://docs.djangoproject.com/en/4.1/howto/deployment/checklist/
# SECURITY WARNING: keep the secret key used in production secret!
SECRET_KEY
=
'django-insecure-pb(*)pgeb#wtpf&*(re9u0)o+q$frp9jq6i8nx=7q5_*g6_2$+'
SECRET_KEY
=
os
.
getenv
(
'SECRET_KEY'
)
# SECURITY WARNING: don't run with debug turned on in production!
DEBUG
=
True
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment