-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Docker and backend changes to support prod-lite mode (#877)
* Docker and backend changes to support prod-lite mode * Bump app version to 1.0.0 across all package files
- Loading branch information
1 parent
57d2027
commit cacac12
Showing
30 changed files
with
1,128 additions
and
685 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
**/node_modules | ||
**/build/ | ||
**/dist/ | ||
**/test/ | ||
**/jest* | ||
**/tsconfig.test.json | ||
**/vitest* | ||
**/.env* | ||
**/.eslint* | ||
**/.prettier* | ||
**/.stylelint* | ||
**/*.md |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,12 @@ | ||
# https://platform.openai.com/docs/quickstart?context=node | ||
OPENAI_API_KEY=YOUR_API_KEY | ||
SESSION_SECRET=YOUR_SESSION_SECRET | ||
CORS_ALLOW_ORIGIN=http://localhost:5173 | ||
SESSION_SECRET=CHANGE_ME_FOR_EXAMPLE_GENERATE_A_UUID | ||
|
||
COOKIE_NAME=SpyLogicLocal.sid | ||
SESSION_EXPIRY_HOURS=8 | ||
|
||
# If running UI and API separately, this value must match your UI URL. | ||
# Default in development mode is http://localhost:5173, so you don't | ||
# need to uncomment this unless you change the UI port. | ||
# In a production deployment that needs CORS, you must provide a value. | ||
#CORS_ALLOW_ORIGIN=http://localhost:5173 |
Oops, something went wrong.