Compare commits
2 Commits
main
...
5a634786bb
| Author | SHA1 | Date | |
|---|---|---|---|
| 5a634786bb | |||
| 0ba44833be |
0
.gitea/workflows/pipeline.yml
Normal file
0
.gitea/workflows/pipeline.yml
Normal file
0
components/backend/polyglot/__init__.py
Normal file
0
components/backend/polyglot/__init__.py
Normal file
0
components/backend/polyglot/adapters/__init__.py
Normal file
0
components/backend/polyglot/adapters/__init__.py
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 32 KiB |
10
components/backend/polyglot/adapters/http/templates/404.html
Normal file
10
components/backend/polyglot/adapters/http/templates/404.html
Normal file
@@ -0,0 +1,10 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="UTF-8">
|
||||||
|
<title>Title</title>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
@@ -0,0 +1,17 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="UTF-8">
|
||||||
|
<title>Title</title>
|
||||||
|
<script
|
||||||
|
src="https://unpkg.com/htmx.org@1.9.6"
|
||||||
|
integrity="sha384-FhXw7b6AlE/jyjlZH5iHa/tTe9EpJ1Y55RjcgPbjeWMskSxZt1v9qkxLJWNJaGni"
|
||||||
|
crossorigin="anonymous"
|
||||||
|
></script>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
|
||||||
|
{% block content %}
|
||||||
|
{% endblock %}
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
@@ -0,0 +1,5 @@
|
|||||||
|
{% extends "base.html" %}
|
||||||
|
{% block content %}
|
||||||
|
|
||||||
|
|
||||||
|
{% endblock %}
|
||||||
0
components/backend/polyglot/application/__init__.py
Normal file
0
components/backend/polyglot/application/__init__.py
Normal file
0
components/backend/polyglot/application/dto.py
Normal file
0
components/backend/polyglot/application/dto.py
Normal file
0
components/backend/polyglot/composites/__init__.py
Normal file
0
components/backend/polyglot/composites/__init__.py
Normal file
0
components/backend/polyglot/composites/app.py
Normal file
0
components/backend/polyglot/composites/app.py
Normal file
3
components/backend/setup.py
Normal file
3
components/backend/setup.py
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
from setuptools import setup
|
||||||
|
|
||||||
|
setup()
|
||||||
0
deployment/backend/Dockerfile
Normal file
0
deployment/backend/Dockerfile
Normal file
0
deployment/backend/entrypoint_api.sh
Normal file
0
deployment/backend/entrypoint_api.sh
Normal file
Reference in New Issue
Block a user