mangostudio 0.1.0 → 0.1.1-canary.00a342c
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 +10 -8
- package/package.json +7 -7
package/README.md
CHANGED
|
@@ -31,14 +31,16 @@ Run `mangostudio` with no arguments for the full command list.
|
|
|
31
31
|
|
|
32
32
|
Configure it with environment variables:
|
|
33
33
|
|
|
34
|
-
| Variable
|
|
35
|
-
|
|
|
36
|
-
| `BETTER_AUTH_SECRET`
|
|
37
|
-
| `GEMINI_API_KEY`
|
|
38
|
-
| `API_HOST`
|
|
39
|
-
| `API_PORT`
|
|
40
|
-
| `DATABASE_PATH`
|
|
41
|
-
| `UPLOADS_DIR`
|
|
34
|
+
| Variable | Purpose |
|
|
35
|
+
| ----------------------------- | ---------------------------------------------------------- |
|
|
36
|
+
| `BETTER_AUTH_SECRET` | Auth signing secret, at least 32 characters |
|
|
37
|
+
| `GEMINI_API_KEY` | Google Gemini API key |
|
|
38
|
+
| `API_HOST` | Host to listen on (default: `localhost`) |
|
|
39
|
+
| `API_PORT` | Port to listen on (default: `3001`) |
|
|
40
|
+
| `DATABASE_PATH` | SQLite database path (default: `~/.mango/database.sqlite`) |
|
|
41
|
+
| `UPLOADS_DIR` | Upload directory (default: `~/.mango/uploads`) |
|
|
42
|
+
| `MANGO_CHATGPT_AUTH_BASE_URL` | ChatGPT OAuth endpoint override for debugging |
|
|
43
|
+
| `MANGO_CHATGPT_BASE_URL` | ChatGPT backend endpoint override for debugging |
|
|
42
44
|
|
|
43
45
|
On first run, `mangostudio serve` can generate a strong auth secret and ask
|
|
44
46
|
whether to store it in `~/.mango/.env` or `~/.mango/config.toml`.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "mangostudio",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.1-canary.00a342c",
|
|
4
4
|
"description": "MangoStudio — AI image generation and chat studio. Installs the prebuilt standalone binary for your platform and exposes the `mangostudio` command.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"type": "commonjs",
|
|
@@ -34,11 +34,11 @@
|
|
|
34
34
|
"cli"
|
|
35
35
|
],
|
|
36
36
|
"optionalDependencies": {
|
|
37
|
-
"@mangostudio/cli-linux-x64": "0.1.
|
|
38
|
-
"@mangostudio/cli-linux-arm64": "0.1.
|
|
39
|
-
"@mangostudio/cli-darwin-x64": "0.1.
|
|
40
|
-
"@mangostudio/cli-darwin-arm64": "0.1.
|
|
41
|
-
"@mangostudio/cli-win32-x64": "0.1.
|
|
42
|
-
"@mangostudio/cli-win32-arm64": "0.1.
|
|
37
|
+
"@mangostudio/cli-linux-x64": "0.1.1-canary.00a342c",
|
|
38
|
+
"@mangostudio/cli-linux-arm64": "0.1.1-canary.00a342c",
|
|
39
|
+
"@mangostudio/cli-darwin-x64": "0.1.1-canary.00a342c",
|
|
40
|
+
"@mangostudio/cli-darwin-arm64": "0.1.1-canary.00a342c",
|
|
41
|
+
"@mangostudio/cli-win32-x64": "0.1.1-canary.00a342c",
|
|
42
|
+
"@mangostudio/cli-win32-arm64": "0.1.1-canary.00a342c"
|
|
43
43
|
}
|
|
44
44
|
}
|