@ezetgalaxy/titan 26.13.3 → 26.13.4

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ezetgalaxy/titan",
3
- "version": "26.13.3",
3
+ "version": "26.13.4",
4
4
  "description": "Titan Planet is a JavaScript-first backend framework that embeds JS actions into a Rust + Axum server and ships as a single native binary. Routes are compiled to static metadata; only actions run in the embedded JS runtime. No Node.js. No event loop in production.",
5
5
  "license": "ISC",
6
6
  "author": "ezetgalaxy",
@@ -66,7 +66,28 @@ COPY --from=builder /app/server/target/release/titan-server ./titan-server
66
66
  COPY --from=builder /app/server/routes.json .
67
67
  COPY --from=builder /app/server/action_map.json .
68
68
  COPY --from=builder /app/server/src/actions ./actions
69
- COPY --from=builder /app/app/static ./static
69
+
70
+ # ---------------- OPTIONAL APP FOLDERS ----------------
71
+ # If you add any extra folders inside /app/app,
72
+ # make sure to copy them from the builder stage.
73
+
74
+ # Static assets
75
+ # COPY --from=builder /app/app/static ./static
76
+
77
+ # Public assets
78
+ # COPY --from=builder /app/app/public ./public
79
+
80
+ #DB
81
+ # COPY --from=builder /app/app/db ./db
82
+
83
+ # Any custom / extra folders
84
+ # Example:
85
+ # COPY --from=builder /app/app/<folder-name> ./<folder-name>
86
+
87
+ # -------------------------------------------------------
88
+
89
+
90
+ # Extensions
70
91
  COPY --from=builder /app/.ext ./.ext
71
92
 
72
93
  # ---- Ensure Executable ----