build: merge frontend and backend into a single repo
This commit is contained in:
parent
10ce333e6f
commit
26ec1e8c15
126 changed files with 8280 additions and 1 deletions
0
apiserver/plane/web/__init__.py
Normal file
0
apiserver/plane/web/__init__.py
Normal file
5
apiserver/plane/web/apps.py
Normal file
5
apiserver/plane/web/apps.py
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
from django.apps import AppConfig
|
||||
|
||||
|
||||
class WebConfig(AppConfig):
|
||||
name = 'plane.web'
|
||||
7
apiserver/plane/web/urls.py
Normal file
7
apiserver/plane/web/urls.py
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
from django.urls import path
|
||||
from django.views.generic import TemplateView
|
||||
|
||||
urlpatterns = [
|
||||
path('about/', TemplateView.as_view(template_name='about.html'))
|
||||
|
||||
]
|
||||
3
apiserver/plane/web/views.py
Normal file
3
apiserver/plane/web/views.py
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
from django.shortcuts import render
|
||||
|
||||
# Create your views here.
|
||||
Loading…
Add table
Add a link
Reference in a new issue