Add restoroo-frontend as submodule

Add apps for restaurant backend views and public views
This commit is contained in:
Kumi 2022-08-05 16:11:28 +00:00
parent 7b5c113f82
commit 43cfed0135
Signed by: kumi
GPG key ID: ECBCC9082395383F
17 changed files with 47 additions and 2 deletions

3
.gitmodules vendored Normal file
View file

@ -0,0 +1,3 @@
[submodule "frontend"]
path = frontend
url = git@git.kumi:restoroo/restoroo-frontend.git

1
frontend Submodule

@ -0,0 +1 @@
Subproject commit e117a67e55ec78cbee83e9fd6ea799982a3cb22e

3
myrestaurant/admin.py Normal file
View file

@ -0,0 +1,3 @@
from django.contrib import admin
# Register your models here.

6
myrestaurant/apps.py Normal file
View file

@ -0,0 +1,6 @@
from django.apps import AppConfig
class MyrestaurantConfig(AppConfig):
default_auto_field = 'django.db.models.BigAutoField'
name = 'myrestaurant'

View file

3
myrestaurant/models.py Normal file
View file

@ -0,0 +1,3 @@
from django.db import models
# Create your models here.

3
myrestaurant/tests.py Normal file
View file

@ -0,0 +1,3 @@
from django.test import TestCase
# Create your tests here.

3
myrestaurant/views.py Normal file
View file

@ -0,0 +1,3 @@
from django.shortcuts import render
# Create your views here.

0
public/__init__.py Normal file
View file

3
public/admin.py Normal file
View file

@ -0,0 +1,3 @@
from django.contrib import admin
# Register your models here.

6
public/apps.py Normal file
View file

@ -0,0 +1,6 @@
from django.apps import AppConfig
class PublicConfig(AppConfig):
default_auto_field = 'django.db.models.BigAutoField'
name = 'public'

View file

3
public/models.py Normal file
View file

@ -0,0 +1,3 @@
from django.db import models
# Create your models here.

3
public/tests.py Normal file
View file

@ -0,0 +1,3 @@
from django.test import TestCase
# Create your tests here.

3
public/views.py Normal file
View file

@ -0,0 +1,3 @@
from django.shortcuts import render
# Create your views here.

View file

@ -30,6 +30,7 @@ INSTALLED_APPS = [
'phonenumber_field',
'core',
]
AUTH_USER_MODEL = "core.User"
@ -50,8 +51,8 @@ ROOT_URLCONF = 'restoroo.urls'
TEMPLATES = [
{
'BACKEND': 'django.template.backends.django.DjangoTemplates',
'DIRS': [],
'APP_DIRS': True,
'DIRS': [BASE_DIR / "templates"],
'APP_DIRS': False,
'OPTIONS': {
'context_processors': [
'django.template.context_processors.debug',
@ -132,6 +133,10 @@ USE_TZ = True
# Static files (CSS, JavaScript, Images)
# https://docs.djangoproject.com/en/4.0/howto/static-files/
STATICFILES_DIRS = [
BASE_DIR / "frontend/static/",
]
STATIC_URL = '/static/'
STATIC_ROOT = None if DEBUG else CONFIG_FILE.config.get("RESTOROO", "StaticRoot", fallback=BASE_DIR / "static")