create-seamless 0.0.7 → 0.0.8

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 (2) hide show
  1. package/index.js +3 -2
  2. package/package.json +2 -2
package/index.js CHANGED
@@ -274,6 +274,7 @@ services:
274
274
  - ./api/.env
275
275
  environment:
276
276
  AUTH_SERVER_URL: http://auth:${authPort}
277
+ DB_HOST: db
277
278
  volumes:
278
279
  - ./api:/app
279
280
  - /app/node_modules
@@ -416,8 +417,8 @@ async function downloadRepo(repo, dest) {
416
417
  await downloadRepo(REPOS.web, dir);
417
418
 
418
419
  writeEnv(dir, {
419
- VITE_AUTH_SERVER_URL: `http://localhost:${apiPort}`,
420
- VITE_API_URL: `http://localhost:${apiPort}`,
420
+ VITE_AUTH_SERVER_URL: `http://localhost:${apiPort}/`,
421
+ VITE_API_URL: `http://localhost:${apiPort}/`,
421
422
  PORT: webPort,
422
423
  });
423
424
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-seamless",
3
- "version": "0.0.7",
3
+ "version": "0.0.8",
4
4
  "description": "The starter script for Seamless Auth",
5
5
  "homepage": "https://github.com/fells-code/create-seamless#readme",
6
6
  "bugs": {
@@ -33,4 +33,4 @@
33
33
  "@types/adm-zip": "^0.5.7",
34
34
  "@types/node": "^24.10.1"
35
35
  }
36
- }
36
+ }