Compare commits
3 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
5efb93ea68 | ||
|
|
1ee6b890ef | ||
|
|
18aab648c6 |
13
.vscode/launch.json
vendored
13
.vscode/launch.json
vendored
@@ -5,7 +5,7 @@
|
|||||||
"version": "0.2.0",
|
"version": "0.2.0",
|
||||||
"configurations": [
|
"configurations": [
|
||||||
{
|
{
|
||||||
"name": "Python: Django",
|
"name": "Test",
|
||||||
"type": "python",
|
"type": "python",
|
||||||
"request": "launch",
|
"request": "launch",
|
||||||
"program": "${workspaceFolder}/manage.py",
|
"program": "${workspaceFolder}/manage.py",
|
||||||
@@ -13,6 +13,17 @@
|
|||||||
"test",
|
"test",
|
||||||
],
|
],
|
||||||
"django": true
|
"django": true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Run Server",
|
||||||
|
"type": "python",
|
||||||
|
"request": "launch",
|
||||||
|
"program": "${workspaceFolder}/manage.py",
|
||||||
|
"args": [
|
||||||
|
"runserver",
|
||||||
|
"--noreload"
|
||||||
|
],
|
||||||
|
"django": true
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
@@ -18,7 +18,7 @@ from django.urls import path, include
|
|||||||
from django.http import JsonResponse
|
from django.http import JsonResponse
|
||||||
|
|
||||||
urlpatterns = [
|
urlpatterns = [
|
||||||
path('', include('api.urls')),
|
# path('api/', include('api.urls')),
|
||||||
path('', include('ui.urls')),
|
path('', include('ui.urls')),
|
||||||
path('admin/', admin.site.urls),
|
path('admin/', admin.site.urls),
|
||||||
]
|
]
|
||||||
|
|||||||
@@ -18,7 +18,7 @@ spec:
|
|||||||
- configMapRef:
|
- configMapRef:
|
||||||
name: $DEPLOY
|
name: $DEPLOY
|
||||||
- secretRef:
|
- secretRef:
|
||||||
name: $django-secrets
|
name: django-secrets
|
||||||
volumeMounts:
|
volumeMounts:
|
||||||
- mountPath: /app/db
|
- mountPath: /app/db
|
||||||
name: $DEPLOY
|
name: $DEPLOY
|
||||||
|
|||||||
@@ -13,4 +13,8 @@ html, body {
|
|||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
.disable-dbl-tap-zoom {
|
||||||
|
touch-action: manipulation;
|
||||||
}
|
}
|
||||||
@@ -18,7 +18,7 @@
|
|||||||
<h1 class="title">
|
<h1 class="title">
|
||||||
The Button
|
The Button
|
||||||
</h1>
|
</h1>
|
||||||
<button class="button is-primary" id="BUTTON">Press</button>
|
<button class="button is-primary disable-dbl-tap-zoom" id="BUTTON">Press</button>
|
||||||
</div>
|
</div>
|
||||||
<div><br></div>
|
<div><br></div>
|
||||||
<div>
|
<div>
|
||||||
|
|||||||
Reference in New Issue
Block a user