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.
- package/README.md +1 -1
- package/index.js +3 -3
- package/package.json +3 -3
package/README.md
CHANGED
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
|
-
'#
|
|
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
|
-
`
|
|
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('
|
|
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.
|
|
4
|
-
"description": "Scaffold a self-hosted
|
|
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": "
|
|
16
|
+
"create-memory-soda": "index.js"
|
|
17
17
|
},
|
|
18
18
|
"files": [
|
|
19
19
|
"index.js",
|