@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.
Files changed (45) hide show
  1. package/.dockerignore +5 -0
  2. package/.github/workflows/build.yml +67 -0
  3. package/.github/workflows/publish.yml +27 -0
  4. package/.gitignore +30 -0
  5. package/.prettierignore +1 -0
  6. package/.vscode/extensions.json +11 -0
  7. package/.vscode/settings.json +30 -0
  8. package/.vscode/tailwind.json +55 -0
  9. package/Dockerfile +20 -0
  10. package/README.md +25 -0
  11. package/babel.config.js +6 -0
  12. package/bin/dev +3 -0
  13. package/bin/docker-build +1 -0
  14. package/bin/docker-run +2 -0
  15. package/bin/pre-push.template +3 -0
  16. package/bin/serve +3 -0
  17. package/bin/setup +9 -0
  18. package/biome.json +24 -0
  19. package/config/base.js +100 -0
  20. package/config/development.js +12 -0
  21. package/config/production.js +13 -0
  22. package/config/staging.js +11 -0
  23. package/package.json +33 -0
  24. package/src/app.js +23 -0
  25. package/src/cloud/.keep +0 -0
  26. package/src/debugRoutes.js +8 -0
  27. package/src/getConfig.js +56 -0
  28. package/src/handlers/.keep +0 -0
  29. package/src/index.js +13 -0
  30. package/src/views/.keep +0 -0
  31. package/static/_assets/flags/bg.svg +5 -0
  32. package/static/_assets/flags/de.svg +5 -0
  33. package/static/_assets/flags/fr.svg +5 -0
  34. package/static/_assets/flags/gb.svg +7 -0
  35. package/static/_assets/flags/it.svg +7 -0
  36. package/static/_assets/flags/us.svg +9 -0
  37. package/static/apple-touch-icon.png +0 -0
  38. package/static/application.css +3804 -0
  39. package/static/favicon-96x96.png +0 -0
  40. package/static/favicon.ico +0 -0
  41. package/static/favicon.svg +14 -0
  42. package/static/site.webmanifest +21 -0
  43. package/static/web-app-manifest-192x192.png +0 -0
  44. package/static/web-app-manifest-512x512.png +0 -0
  45. package/tsconfig.json +12 -0
Binary file
Binary file
@@ -0,0 +1,14 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" version="1.1" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:svgjs="http://svgjs.dev/svgjs" width="512px" height="512px"><svg width="512px" height="512px" viewBox="0 0 512 512" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
2
+ <!-- Generator: Sketch 56.3 (81716) - https://sketch.com -->
3
+ <title>avatar-white</title>
4
+ <desc>Created with Sketch.</desc>
5
+ <g id="SvgjsG1007" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
6
+ <rect fill="#161616" x="0" y="0" width="512" height="512"></rect>
7
+ <g id="SvgjsG1006" transform="translate(182.000000, 155.000000)" fill="#FFFFFF">
8
+ <polyline id="SvgjsPolyline1005" points="0 52.9395871 70 2 70 203 0 203 0 52.9395871"></polyline>
9
+ <path d="M148,59.8218858 L139.202064,59.3558816 C111.629512,59.4063654 84.5067446,64.5052285 80.4974605,76 L77,75.895149 C80.8115341,21.6600212 111.575228,-1.05380253 147.868167,0.0374240835 L148,59.8218858" id="SvgjsPath1004"></path>
10
+ </g>
11
+ </g>
12
+ </svg><style>@media (prefers-color-scheme: light) { :root { filter: none; } }
13
+ @media (prefers-color-scheme: dark) { :root { filter: none; } }
14
+ </style></svg>
@@ -0,0 +1,21 @@
1
+ {
2
+ "name": "Raketa Admin",
3
+ "short_name": "Raketa Admin",
4
+ "icons": [
5
+ {
6
+ "src": "/web-app-manifest-192x192.png",
7
+ "sizes": "192x192",
8
+ "type": "image/png",
9
+ "purpose": "maskable"
10
+ },
11
+ {
12
+ "src": "/web-app-manifest-512x512.png",
13
+ "sizes": "512x512",
14
+ "type": "image/png",
15
+ "purpose": "maskable"
16
+ }
17
+ ],
18
+ "theme_color": "#ffffff",
19
+ "background_color": "#ffffff",
20
+ "display": "standalone"
21
+ }
package/tsconfig.json ADDED
@@ -0,0 +1,12 @@
1
+ {
2
+ "compilerOptions": {
3
+ "target": "ESNext",
4
+ "module": "ESNext",
5
+ "moduleResolution": "Bundler",
6
+ "strict": true,
7
+ "skipLibCheck": true,
8
+ "types": ["node"],
9
+ "jsx": "react-jsx",
10
+ "jsxImportSource": "hono/jsx"
11
+ }
12
+ }