forked from dmitryplyaskin/SillyInnkeeper
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathenv.example
More file actions
24 lines (19 loc) · 704 Bytes
/
Copy pathenv.example
File metadata and controls
24 lines (19 loc) · 704 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# Copy this file to `.env` in the repository root (next to package.json).
#
# SillyInnkeeper server
# To allow access from other devices in your LAN:
# INNKEEPER_HOST=0.0.0.0
# Then open: http://<your-pc-lan-ip>:<INNKEEPER_PORT>
INNKEEPER_HOST=127.0.0.1
INNKEEPER_PORT=48912
# Backward-compat: some environments use PORT
# PORT=48912
# SillyTavern integration / CORS
# If SillyTavern is not running on 8000, set ST_PORT accordingly.
ST_PORT=8000
# Extra allowed origins (comma-separated), useful when SillyTavern is opened via IP/hostname.
# Example:
# CORS_ALLOW_ORIGINS=http://192.168.1.50:8001
CORS_ALLOW_ORIGINS=
# Client dev only (Vite proxy target)
VITE_INNKEEPER_URL=http://127.0.0.1:48912