initial commit
This commit is contained in:
0
backend/homepage/__init__.py
Normal file
0
backend/homepage/__init__.py
Normal file
BIN
backend/homepage/__pycache__/__init__.cpython-310.pyc
Normal file
BIN
backend/homepage/__pycache__/__init__.cpython-310.pyc
Normal file
Binary file not shown.
BIN
backend/homepage/__pycache__/__init__.cpython-312.pyc
Normal file
BIN
backend/homepage/__pycache__/__init__.cpython-312.pyc
Normal file
Binary file not shown.
BIN
backend/homepage/__pycache__/admin.cpython-310.pyc
Normal file
BIN
backend/homepage/__pycache__/admin.cpython-310.pyc
Normal file
Binary file not shown.
BIN
backend/homepage/__pycache__/admin.cpython-312.pyc
Normal file
BIN
backend/homepage/__pycache__/admin.cpython-312.pyc
Normal file
Binary file not shown.
BIN
backend/homepage/__pycache__/apps.cpython-310.pyc
Normal file
BIN
backend/homepage/__pycache__/apps.cpython-310.pyc
Normal file
Binary file not shown.
BIN
backend/homepage/__pycache__/apps.cpython-312.pyc
Normal file
BIN
backend/homepage/__pycache__/apps.cpython-312.pyc
Normal file
Binary file not shown.
BIN
backend/homepage/__pycache__/models.cpython-310.pyc
Normal file
BIN
backend/homepage/__pycache__/models.cpython-310.pyc
Normal file
Binary file not shown.
BIN
backend/homepage/__pycache__/models.cpython-312.pyc
Normal file
BIN
backend/homepage/__pycache__/models.cpython-312.pyc
Normal file
Binary file not shown.
BIN
backend/homepage/__pycache__/views.cpython-310.pyc
Normal file
BIN
backend/homepage/__pycache__/views.cpython-310.pyc
Normal file
Binary file not shown.
BIN
backend/homepage/__pycache__/views.cpython-312.pyc
Normal file
BIN
backend/homepage/__pycache__/views.cpython-312.pyc
Normal file
Binary file not shown.
3
backend/homepage/admin.py
Normal file
3
backend/homepage/admin.py
Normal file
@@ -0,0 +1,3 @@
|
||||
from django.contrib import admin
|
||||
|
||||
# Register your models here.
|
||||
6
backend/homepage/apps.py
Normal file
6
backend/homepage/apps.py
Normal file
@@ -0,0 +1,6 @@
|
||||
from django.apps import AppConfig
|
||||
|
||||
|
||||
class HomepageConfig(AppConfig):
|
||||
default_auto_field = 'django.db.models.BigAutoField'
|
||||
name = 'homepage'
|
||||
0
backend/homepage/migrations/__init__.py
Normal file
0
backend/homepage/migrations/__init__.py
Normal file
BIN
backend/homepage/migrations/__pycache__/__init__.cpython-310.pyc
Normal file
BIN
backend/homepage/migrations/__pycache__/__init__.cpython-310.pyc
Normal file
Binary file not shown.
BIN
backend/homepage/migrations/__pycache__/__init__.cpython-312.pyc
Normal file
BIN
backend/homepage/migrations/__pycache__/__init__.cpython-312.pyc
Normal file
Binary file not shown.
3
backend/homepage/models.py
Normal file
3
backend/homepage/models.py
Normal file
@@ -0,0 +1,3 @@
|
||||
from django.db import models
|
||||
|
||||
# Create your models here.
|
||||
6
backend/homepage/package-lock.json
generated
Normal file
6
backend/homepage/package-lock.json
generated
Normal file
@@ -0,0 +1,6 @@
|
||||
{
|
||||
"name": "homepage",
|
||||
"lockfileVersion": 3,
|
||||
"requires": true,
|
||||
"packages": {}
|
||||
}
|
||||
3
backend/homepage/tests.py
Normal file
3
backend/homepage/tests.py
Normal file
@@ -0,0 +1,3 @@
|
||||
from django.test import TestCase
|
||||
|
||||
# Create your tests here.
|
||||
5
backend/homepage/views.py
Normal file
5
backend/homepage/views.py
Normal file
@@ -0,0 +1,5 @@
|
||||
from django.shortcuts import render
|
||||
|
||||
# Create your views here.
|
||||
def index(request):
|
||||
return render(request, "index.html")
|
||||
Reference in New Issue
Block a user