@raketa-cloud/admin-starter-template 1.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.dockerignore +5 -0
- package/.github/workflows/build.yml +67 -0
- package/.github/workflows/publish.yml +27 -0
- package/.gitignore +30 -0
- package/.prettierignore +1 -0
- package/.vscode/extensions.json +11 -0
- package/.vscode/settings.json +30 -0
- package/.vscode/tailwind.json +55 -0
- package/Dockerfile +20 -0
- package/README.md +25 -0
- package/babel.config.js +6 -0
- package/bin/dev +3 -0
- package/bin/docker-build +1 -0
- package/bin/docker-run +2 -0
- package/bin/pre-push.template +3 -0
- package/bin/serve +3 -0
- package/bin/setup +9 -0
- package/biome.json +24 -0
- package/config/base.js +100 -0
- package/config/development.js +12 -0
- package/config/production.js +13 -0
- package/config/staging.js +11 -0
- package/package.json +33 -0
- package/src/app.js +23 -0
- package/src/cloud/.keep +0 -0
- package/src/debugRoutes.js +8 -0
- package/src/getConfig.js +56 -0
- package/src/handlers/.keep +0 -0
- package/src/index.js +13 -0
- package/src/views/.keep +0 -0
- package/static/_assets/flags/bg.svg +5 -0
- package/static/_assets/flags/de.svg +5 -0
- package/static/_assets/flags/fr.svg +5 -0
- package/static/_assets/flags/gb.svg +7 -0
- package/static/_assets/flags/it.svg +7 -0
- package/static/_assets/flags/us.svg +9 -0
- package/static/apple-touch-icon.png +0 -0
- package/static/application.css +3804 -0
- package/static/favicon-96x96.png +0 -0
- package/static/favicon.ico +0 -0
- package/static/favicon.svg +14 -0
- package/static/site.webmanifest +21 -0
- package/static/web-app-manifest-192x192.png +0 -0
- package/static/web-app-manifest-512x512.png +0 -0
- package/tsconfig.json +12 -0
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" id="flag-icons-gb" viewBox="0 0 512 512">
|
|
2
|
+
<path fill="#012169" d="M0 0h512v512H0z"/>
|
|
3
|
+
<path fill="#FFF" d="M512 0v64L322 256l190 187v69h-67L254 324 68 512H0v-68l186-187L0 74V0h62l192 188L440 0z"/>
|
|
4
|
+
<path fill="#C8102E" d="m184 324 11 34L42 512H0v-3zm124-12 54 8 150 147v45zM512 0 320 196l-4-44L466 0zM0 1l193 189-59-8L0 49z"/>
|
|
5
|
+
<path fill="#FFF" d="M176 0v512h160V0zM0 176v160h512V176z"/>
|
|
6
|
+
<path fill="#C8102E" d="M0 208v96h512v-96zM208 0v512h96V0z"/>
|
|
7
|
+
</svg>
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" id="flag-icons-it" viewBox="0 0 512 512">
|
|
2
|
+
<g fill-rule="evenodd" stroke-width="1pt">
|
|
3
|
+
<path fill="#fff" d="M0 0h512v512H0z"/>
|
|
4
|
+
<path fill="#009246" d="M0 0h170.7v512H0z"/>
|
|
5
|
+
<path fill="#ce2b37" d="M341.3 0H512v512H341.3z"/>
|
|
6
|
+
</g>
|
|
7
|
+
</svg>
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" id="flag-icons-us" viewBox="0 0 512 512">
|
|
2
|
+
<path fill="#bd3d44" d="M0 0h512v512H0"/>
|
|
3
|
+
<path stroke="#fff" stroke-width="40" d="M0 58h512M0 137h512M0 216h512M0 295h512M0 374h512M0 453h512"/>
|
|
4
|
+
<path fill="#192f5d" d="M0 0h390v275H0z"/>
|
|
5
|
+
<marker id="us-a" markerHeight="30" markerWidth="30">
|
|
6
|
+
<path fill="#fff" d="m15 0 9.3 28.6L0 11h30L5.7 28.6"/>
|
|
7
|
+
</marker>
|
|
8
|
+
<path fill="none" marker-mid="url(#us-a)" d="m0 0 18 11h65 65 65 65 66L51 39h65 65 65 65L18 66h65 65 65 65 66L51 94h65 65 65 65L18 121h65 65 65 65 66L51 149h65 65 65 65L18 177h65 65 65 65 66L51 205h65 65 65 65L18 232h65 65 65 65 66z"/>
|
|
9
|
+
</svg>
|
|
Binary file
|