create-memory-soda 0.1.0 → 0.1.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 (3) hide show
  1. package/README.md +1 -1
  2. package/index.js +3 -3
  3. package/package.json +3 -3
package/README.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # create-memory-soda
2
2
 
3
- Scaffold a self-hosted [memory-soda](https://github.com/alagappan17/memory-soda)
3
+ Scaffold a self-hosted [Memory Soda](https://github.com/alagappan17/memory-soda)
4
4
  instance — API, dashboard, SDK, and a Postgres to point them at.
5
5
 
6
6
  ```bash
package/index.js CHANGED
@@ -64,11 +64,11 @@ export function renderEnv({
64
64
  `GOOGLE_GENERATIVE_AI_API_KEY=${geminiKey}`,
65
65
  '',
66
66
  '# Ports. CORS_ORIGIN must match where the dashboard is served from, and',
67
- '# NEXT_PUBLIC_API_URL is the browser\'s view of the API — not the server\'s.',
67
+ '# VITE_API_URL is the browser\'s view of the API — not the server\'s.',
68
68
  `PORT=${apiPort}`,
69
69
  `DASHBOARD_PORT=${dashboardPort}`,
70
70
  `CORS_ORIGIN=http://localhost:${dashboardPort}`,
71
- `NEXT_PUBLIC_API_URL=http://localhost:${apiPort}`,
71
+ `VITE_API_URL=http://localhost:${apiPort}`,
72
72
  '',
73
73
  '# Dashboard login, created once on first boot.',
74
74
  `ADMIN_USERNAME=${adminUser}`,
@@ -174,7 +174,7 @@ async function main() {
174
174
  if (!tryRun('git', ['--version'])) die('git is required but was not found.');
175
175
 
176
176
  console.log(
177
- `\n${chalk.bold('memory-soda')} ${chalk.dim('— self-hosted memory for AI agents')}\n`,
177
+ `\n${chalk.bold('Memory Soda')} ${chalk.dim('— self-hosted memory for AI agents')}\n`,
178
178
  );
179
179
 
180
180
  // Read answers off the line iterator rather than rl.question(): with a piped
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "create-memory-soda",
3
- "version": "0.1.0",
4
- "description": "Scaffold a self-hosted memory-soda instance — API, dashboard, and Postgres",
3
+ "version": "0.1.1",
4
+ "description": "Scaffold a self-hosted Memory Soda instance — API, dashboard, and Postgres",
5
5
  "keywords": [
6
6
  "ai",
7
7
  "memory",
@@ -13,7 +13,7 @@
13
13
  "license": "MIT",
14
14
  "type": "module",
15
15
  "bin": {
16
- "create-memory-soda": "./index.js"
16
+ "create-memory-soda": "index.js"
17
17
  },
18
18
  "files": [
19
19
  "index.js",