@pylonsync/create-pylon 0.11.5 → 0.12.0

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 (42) hide show
  1. package/package.json +1 -1
  2. package/templates/_root/AGENTS.md +2 -1
  3. package/templates/agency/AGENTS.md +2 -1
  4. package/templates/agency/gitignore +1 -0
  5. package/templates/ai-chat/AGENTS.md +2 -1
  6. package/templates/ai-chat/gitignore +1 -0
  7. package/templates/ai-studio/AGENTS.md +2 -1
  8. package/templates/ai-studio/gitignore +1 -0
  9. package/templates/barebones/AGENTS.md +2 -1
  10. package/templates/barebones/gitignore +1 -0
  11. package/templates/chat/AGENTS.md +2 -1
  12. package/templates/chat/gitignore +1 -0
  13. package/templates/consumer/AGENTS.md +2 -1
  14. package/templates/consumer/gitignore +1 -0
  15. package/templates/creator/AGENTS.md +2 -1
  16. package/templates/creator/gitignore +1 -0
  17. package/templates/crm/AGENTS.md +2 -1
  18. package/templates/crm/gitignore +1 -0
  19. package/templates/directory/AGENTS.md +2 -1
  20. package/templates/directory/gitignore +1 -0
  21. package/templates/helpdesk/AGENTS.md +2 -1
  22. package/templates/helpdesk/gitignore +1 -0
  23. package/templates/inventory/AGENTS.md +2 -1
  24. package/templates/inventory/gitignore +1 -0
  25. package/templates/invoices/AGENTS.md +2 -1
  26. package/templates/invoices/gitignore +1 -0
  27. package/templates/local-service/AGENTS.md +2 -1
  28. package/templates/local-service/gitignore +1 -0
  29. package/templates/marketplace/AGENTS.md +2 -1
  30. package/templates/marketplace/gitignore +1 -0
  31. package/templates/projects/AGENTS.md +2 -1
  32. package/templates/projects/gitignore +1 -0
  33. package/templates/restaurant/AGENTS.md +2 -1
  34. package/templates/restaurant/gitignore +1 -0
  35. package/templates/saas/AGENTS.md +2 -1
  36. package/templates/saas/gitignore +1 -0
  37. package/templates/shop/AGENTS.md +2 -1
  38. package/templates/shop/gitignore +1 -0
  39. package/templates/todo/AGENTS.md +2 -1
  40. package/templates/todo/gitignore +1 -0
  41. package/templates/waitlist/AGENTS.md +2 -1
  42. package/templates/waitlist/gitignore +1 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pylonsync/create-pylon",
3
- "version": "0.11.5",
3
+ "version": "0.12.0",
4
4
  "description": "Scaffold a new Pylon app — realtime backend + web/mobile/expo frontends in one command. Run via `npm create @pylonsync/pylon@latest`.",
5
5
  "publishConfig": {
6
6
  "access": "public"
@@ -74,7 +74,8 @@ this pass before the user has to ask.
74
74
  | Inspect data / entities | `pylon data entities` \| `pylon data list <Entity>` |
75
75
  | Call a function | `pylon fn <name> key=value` |
76
76
  | Health snapshot | `pylon status` |
77
- | Build for prod | `pylon build` |
77
+ | Build for prod (writes `dist/`) | `pylon build` |
78
+ | Run the production build | `pylon start dist` |
78
79
  | Wire in Stack0 Analytics or Feedback | `pylon add analytics --site-key <KEY>` \| `pylon add feedback` |
79
80
  | Deploy (Pylon Cloud by default) | `pylon deploy` |
80
81
  | Look up an error code | `pylon explain <CODE>` |
@@ -137,7 +137,8 @@ test("createThing then read it back", async () => {
137
137
  | Inspect data / entities | `pylon data entities` \| `pylon data list <Entity>` |
138
138
  | Call a function | `pylon fn <name> key=value` |
139
139
  | Health snapshot | `pylon status` |
140
- | Build for prod | `pylon build` |
140
+ | Build for prod (writes `dist/`) | `pylon build` |
141
+ | Run the production build | `pylon start dist` |
141
142
  | Deploy (Pylon Cloud by default) | `pylon deploy` |
142
143
  | Look up an error code | `pylon explain <CODE>` |
143
144
 
@@ -3,6 +3,7 @@ node_modules/
3
3
  pylon.manifest.json
4
4
  pylon.client.ts
5
5
  web/dist/
6
+ dist/
6
7
  *.db
7
8
  *.db-*
8
9
  .env
@@ -156,7 +156,8 @@ test("createThing then read it back", async () => {
156
156
  | Inspect data / entities | `pylon data entities` \| `pylon data list <Entity>` |
157
157
  | Call a function | `pylon fn <name> key=value` |
158
158
  | Health snapshot | `pylon status` |
159
- | Build for prod | `pylon build` |
159
+ | Build for prod (writes `dist/`) | `pylon build` |
160
+ | Run the production build | `pylon start dist` |
160
161
  | Deploy (Pylon Cloud by default) | `pylon deploy` |
161
162
  | Look up an error code | `pylon explain <CODE>` |
162
163
 
@@ -3,6 +3,7 @@ node_modules/
3
3
  pylon.manifest.json
4
4
  pylon.client.ts
5
5
  web/dist/
6
+ dist/
6
7
  *.db
7
8
  *.db-*
8
9
  .env
@@ -156,7 +156,8 @@ test("createThing then read it back", async () => {
156
156
  | Inspect data / entities | `pylon data entities` \| `pylon data list <Entity>` |
157
157
  | Call a function | `pylon fn <name> key=value` |
158
158
  | Health snapshot | `pylon status` |
159
- | Build for prod | `pylon build` |
159
+ | Build for prod (writes `dist/`) | `pylon build` |
160
+ | Run the production build | `pylon start dist` |
160
161
  | Deploy (Pylon Cloud by default) | `pylon deploy` |
161
162
  | Look up an error code | `pylon explain <CODE>` |
162
163
 
@@ -3,6 +3,7 @@ node_modules/
3
3
  pylon.manifest.json
4
4
  pylon.client.ts
5
5
  web/dist/
6
+ dist/
6
7
  *.db
7
8
  *.db-*
8
9
  .env
@@ -137,7 +137,8 @@ test("createThing then read it back", async () => {
137
137
  | Inspect data / entities | `pylon data entities` \| `pylon data list <Entity>` |
138
138
  | Call a function | `pylon fn <name> key=value` |
139
139
  | Health snapshot | `pylon status` |
140
- | Build for prod | `pylon build` |
140
+ | Build for prod (writes `dist/`) | `pylon build` |
141
+ | Run the production build | `pylon start dist` |
141
142
  | Deploy (Pylon Cloud by default) | `pylon deploy` |
142
143
  | Look up an error code | `pylon explain <CODE>` |
143
144
 
@@ -3,6 +3,7 @@ node_modules/
3
3
  pylon.manifest.json
4
4
  pylon.client.ts
5
5
  web/dist/
6
+ dist/
6
7
  *.db
7
8
  *.db-*
8
9
  .env
@@ -156,7 +156,8 @@ test("createThing then read it back", async () => {
156
156
  | Inspect data / entities | `pylon data entities` \| `pylon data list <Entity>` |
157
157
  | Call a function | `pylon fn <name> key=value` |
158
158
  | Health snapshot | `pylon status` |
159
- | Build for prod | `pylon build` |
159
+ | Build for prod (writes `dist/`) | `pylon build` |
160
+ | Run the production build | `pylon start dist` |
160
161
  | Deploy (Pylon Cloud by default) | `pylon deploy` |
161
162
  | Look up an error code | `pylon explain <CODE>` |
162
163
 
@@ -3,6 +3,7 @@ node_modules/
3
3
  pylon.manifest.json
4
4
  pylon.client.ts
5
5
  web/dist/
6
+ dist/
6
7
  *.db
7
8
  *.db-*
8
9
  .env
@@ -137,7 +137,8 @@ test("createThing then read it back", async () => {
137
137
  | Inspect data / entities | `pylon data entities` \| `pylon data list <Entity>` |
138
138
  | Call a function | `pylon fn <name> key=value` |
139
139
  | Health snapshot | `pylon status` |
140
- | Build for prod | `pylon build` |
140
+ | Build for prod (writes `dist/`) | `pylon build` |
141
+ | Run the production build | `pylon start dist` |
141
142
  | Deploy (Pylon Cloud by default) | `pylon deploy` |
142
143
  | Look up an error code | `pylon explain <CODE>` |
143
144
 
@@ -3,6 +3,7 @@ node_modules/
3
3
  pylon.manifest.json
4
4
  pylon.client.ts
5
5
  web/dist/
6
+ dist/
6
7
  *.db
7
8
  *.db-*
8
9
  .env
@@ -137,7 +137,8 @@ test("createThing then read it back", async () => {
137
137
  | Inspect data / entities | `pylon data entities` \| `pylon data list <Entity>` |
138
138
  | Call a function | `pylon fn <name> key=value` |
139
139
  | Health snapshot | `pylon status` |
140
- | Build for prod | `pylon build` |
140
+ | Build for prod (writes `dist/`) | `pylon build` |
141
+ | Run the production build | `pylon start dist` |
141
142
  | Deploy (Pylon Cloud by default) | `pylon deploy` |
142
143
  | Look up an error code | `pylon explain <CODE>` |
143
144
 
@@ -3,6 +3,7 @@ node_modules/
3
3
  pylon.manifest.json
4
4
  pylon.client.ts
5
5
  web/dist/
6
+ dist/
6
7
  *.db
7
8
  *.db-*
8
9
  .env
@@ -137,7 +137,8 @@ test("createThing then read it back", async () => {
137
137
  | Inspect data / entities | `pylon data entities` \| `pylon data list <Entity>` |
138
138
  | Call a function | `pylon fn <name> key=value` |
139
139
  | Health snapshot | `pylon status` |
140
- | Build for prod | `pylon build` |
140
+ | Build for prod (writes `dist/`) | `pylon build` |
141
+ | Run the production build | `pylon start dist` |
141
142
  | Deploy (Pylon Cloud by default) | `pylon deploy` |
142
143
  | Look up an error code | `pylon explain <CODE>` |
143
144
 
@@ -3,6 +3,7 @@ node_modules/
3
3
  pylon.manifest.json
4
4
  pylon.client.ts
5
5
  web/dist/
6
+ dist/
6
7
  *.db
7
8
  *.db-*
8
9
  .env
@@ -137,7 +137,8 @@ test("createThing then read it back", async () => {
137
137
  | Inspect data / entities | `pylon data entities` \| `pylon data list <Entity>` |
138
138
  | Call a function | `pylon fn <name> key=value` |
139
139
  | Health snapshot | `pylon status` |
140
- | Build for prod | `pylon build` |
140
+ | Build for prod (writes `dist/`) | `pylon build` |
141
+ | Run the production build | `pylon start dist` |
141
142
  | Deploy (Pylon Cloud by default) | `pylon deploy` |
142
143
  | Look up an error code | `pylon explain <CODE>` |
143
144
 
@@ -3,6 +3,7 @@ node_modules/
3
3
  pylon.manifest.json
4
4
  pylon.client.ts
5
5
  web/dist/
6
+ dist/
6
7
  *.db
7
8
  *.db-*
8
9
  .env
@@ -137,7 +137,8 @@ test("createThing then read it back", async () => {
137
137
  | Inspect data / entities | `pylon data entities` \| `pylon data list <Entity>` |
138
138
  | Call a function | `pylon fn <name> key=value` |
139
139
  | Health snapshot | `pylon status` |
140
- | Build for prod | `pylon build` |
140
+ | Build for prod (writes `dist/`) | `pylon build` |
141
+ | Run the production build | `pylon start dist` |
141
142
  | Deploy (Pylon Cloud by default) | `pylon deploy` |
142
143
  | Look up an error code | `pylon explain <CODE>` |
143
144
 
@@ -3,6 +3,7 @@ node_modules/
3
3
  pylon.manifest.json
4
4
  pylon.client.ts
5
5
  web/dist/
6
+ dist/
6
7
  *.db
7
8
  *.db-*
8
9
  .env
@@ -137,7 +137,8 @@ test("createThing then read it back", async () => {
137
137
  | Inspect data / entities | `pylon data entities` \| `pylon data list <Entity>` |
138
138
  | Call a function | `pylon fn <name> key=value` |
139
139
  | Health snapshot | `pylon status` |
140
- | Build for prod | `pylon build` |
140
+ | Build for prod (writes `dist/`) | `pylon build` |
141
+ | Run the production build | `pylon start dist` |
141
142
  | Deploy (Pylon Cloud by default) | `pylon deploy` |
142
143
  | Look up an error code | `pylon explain <CODE>` |
143
144
 
@@ -3,6 +3,7 @@ node_modules/
3
3
  pylon.manifest.json
4
4
  pylon.client.ts
5
5
  web/dist/
6
+ dist/
6
7
  *.db
7
8
  *.db-*
8
9
  .env
@@ -137,7 +137,8 @@ test("createThing then read it back", async () => {
137
137
  | Inspect data / entities | `pylon data entities` \| `pylon data list <Entity>` |
138
138
  | Call a function | `pylon fn <name> key=value` |
139
139
  | Health snapshot | `pylon status` |
140
- | Build for prod | `pylon build` |
140
+ | Build for prod (writes `dist/`) | `pylon build` |
141
+ | Run the production build | `pylon start dist` |
141
142
  | Deploy (Pylon Cloud by default) | `pylon deploy` |
142
143
  | Look up an error code | `pylon explain <CODE>` |
143
144
 
@@ -3,6 +3,7 @@ node_modules/
3
3
  pylon.manifest.json
4
4
  pylon.client.ts
5
5
  web/dist/
6
+ dist/
6
7
  *.db
7
8
  *.db-*
8
9
  .env
@@ -137,7 +137,8 @@ test("createThing then read it back", async () => {
137
137
  | Inspect data / entities | `pylon data entities` \| `pylon data list <Entity>` |
138
138
  | Call a function | `pylon fn <name> key=value` |
139
139
  | Health snapshot | `pylon status` |
140
- | Build for prod | `pylon build` |
140
+ | Build for prod (writes `dist/`) | `pylon build` |
141
+ | Run the production build | `pylon start dist` |
141
142
  | Deploy (Pylon Cloud by default) | `pylon deploy` |
142
143
  | Look up an error code | `pylon explain <CODE>` |
143
144
 
@@ -3,6 +3,7 @@ node_modules/
3
3
  pylon.manifest.json
4
4
  pylon.client.ts
5
5
  web/dist/
6
+ dist/
6
7
  *.db
7
8
  *.db-*
8
9
  .env
@@ -137,7 +137,8 @@ test("createThing then read it back", async () => {
137
137
  | Inspect data / entities | `pylon data entities` \| `pylon data list <Entity>` |
138
138
  | Call a function | `pylon fn <name> key=value` |
139
139
  | Health snapshot | `pylon status` |
140
- | Build for prod | `pylon build` |
140
+ | Build for prod (writes `dist/`) | `pylon build` |
141
+ | Run the production build | `pylon start dist` |
141
142
  | Deploy (Pylon Cloud by default) | `pylon deploy` |
142
143
  | Look up an error code | `pylon explain <CODE>` |
143
144
 
@@ -3,6 +3,7 @@ node_modules/
3
3
  pylon.manifest.json
4
4
  pylon.client.ts
5
5
  web/dist/
6
+ dist/
6
7
  *.db
7
8
  *.db-*
8
9
  .env
@@ -137,7 +137,8 @@ test("createThing then read it back", async () => {
137
137
  | Inspect data / entities | `pylon data entities` \| `pylon data list <Entity>` |
138
138
  | Call a function | `pylon fn <name> key=value` |
139
139
  | Health snapshot | `pylon status` |
140
- | Build for prod | `pylon build` |
140
+ | Build for prod (writes `dist/`) | `pylon build` |
141
+ | Run the production build | `pylon start dist` |
141
142
  | Deploy (Pylon Cloud by default) | `pylon deploy` |
142
143
  | Look up an error code | `pylon explain <CODE>` |
143
144
 
@@ -3,6 +3,7 @@ node_modules/
3
3
  pylon.manifest.json
4
4
  pylon.client.ts
5
5
  web/dist/
6
+ dist/
6
7
  *.db
7
8
  *.db-*
8
9
  .env
@@ -137,7 +137,8 @@ test("createThing then read it back", async () => {
137
137
  | Inspect data / entities | `pylon data entities` \| `pylon data list <Entity>` |
138
138
  | Call a function | `pylon fn <name> key=value` |
139
139
  | Health snapshot | `pylon status` |
140
- | Build for prod | `pylon build` |
140
+ | Build for prod (writes `dist/`) | `pylon build` |
141
+ | Run the production build | `pylon start dist` |
141
142
  | Deploy (Pylon Cloud by default) | `pylon deploy` |
142
143
  | Look up an error code | `pylon explain <CODE>` |
143
144
 
@@ -3,6 +3,7 @@ node_modules/
3
3
  pylon.manifest.json
4
4
  pylon.client.ts
5
5
  web/dist/
6
+ dist/
6
7
  *.db
7
8
  *.db-*
8
9
  .env
@@ -137,7 +137,8 @@ test("createThing then read it back", async () => {
137
137
  | Inspect data / entities | `pylon data entities` \| `pylon data list <Entity>` |
138
138
  | Call a function | `pylon fn <name> key=value` |
139
139
  | Health snapshot | `pylon status` |
140
- | Build for prod | `pylon build` |
140
+ | Build for prod (writes `dist/`) | `pylon build` |
141
+ | Run the production build | `pylon start dist` |
141
142
  | Deploy (Pylon Cloud by default) | `pylon deploy` |
142
143
  | Look up an error code | `pylon explain <CODE>` |
143
144
 
@@ -3,6 +3,7 @@ node_modules/
3
3
  pylon.manifest.json
4
4
  pylon.client.ts
5
5
  web/dist/
6
+ dist/
6
7
  *.db
7
8
  *.db-*
8
9
  .env
@@ -137,7 +137,8 @@ test("createThing then read it back", async () => {
137
137
  | Inspect data / entities | `pylon data entities` \| `pylon data list <Entity>` |
138
138
  | Call a function | `pylon fn <name> key=value` |
139
139
  | Health snapshot | `pylon status` |
140
- | Build for prod | `pylon build` |
140
+ | Build for prod (writes `dist/`) | `pylon build` |
141
+ | Run the production build | `pylon start dist` |
141
142
  | Deploy (Pylon Cloud by default) | `pylon deploy` |
142
143
  | Look up an error code | `pylon explain <CODE>` |
143
144
 
@@ -3,6 +3,7 @@ node_modules/
3
3
  pylon.manifest.json
4
4
  pylon.client.ts
5
5
  web/dist/
6
+ dist/
6
7
  *.db
7
8
  *.db-*
8
9
  .env
@@ -137,7 +137,8 @@ test("createThing then read it back", async () => {
137
137
  | Inspect data / entities | `pylon data entities` \| `pylon data list <Entity>` |
138
138
  | Call a function | `pylon fn <name> key=value` |
139
139
  | Health snapshot | `pylon status` |
140
- | Build for prod | `pylon build` |
140
+ | Build for prod (writes `dist/`) | `pylon build` |
141
+ | Run the production build | `pylon start dist` |
141
142
  | Deploy (Pylon Cloud by default) | `pylon deploy` |
142
143
  | Look up an error code | `pylon explain <CODE>` |
143
144
 
@@ -3,6 +3,7 @@ node_modules/
3
3
  pylon.manifest.json
4
4
  pylon.client.ts
5
5
  web/dist/
6
+ dist/
6
7
  *.db
7
8
  *.db-*
8
9
  .env
@@ -137,7 +137,8 @@ test("createThing then read it back", async () => {
137
137
  | Inspect data / entities | `pylon data entities` \| `pylon data list <Entity>` |
138
138
  | Call a function | `pylon fn <name> key=value` |
139
139
  | Health snapshot | `pylon status` |
140
- | Build for prod | `pylon build` |
140
+ | Build for prod (writes `dist/`) | `pylon build` |
141
+ | Run the production build | `pylon start dist` |
141
142
  | Deploy (Pylon Cloud by default) | `pylon deploy` |
142
143
  | Look up an error code | `pylon explain <CODE>` |
143
144
 
@@ -3,6 +3,7 @@ node_modules/
3
3
  pylon.manifest.json
4
4
  pylon.client.ts
5
5
  web/dist/
6
+ dist/
6
7
  *.db
7
8
  *.db-*
8
9
  .env