-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
e17b0d4
commit 3fd53cf
Showing
4 changed files
with
73 additions
and
25 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 |
---|---|---|
@@ -1,21 +1,21 @@ | ||
APP_SECRET="" | ||
FLASK_SERVER_NAME="localhost:5000" | ||
BIND_HOST="127.0.0.1" | ||
BIND_PORT="5001" | ||
FLASK_SERVER_NAME="localhost:${BIND_PORT}" | ||
FLASK_APPLICATION_ROOT="/" | ||
FLASK_PREFERRED_URL_SCHEME="http" | ||
VITE_BASE_DOMAIN="http://localhost:53000" | ||
VITE_BASE_PATH="" # example: "/service/clip" | ||
VITE_API_BASE_DOMAIN="http://localhost:5000" | ||
VITE_API_BASE_DOMAIN="http://localhost:${BIND_PORT}" | ||
VITE_API_BASE_PATH="${VITE_BASE_PATH}" | ||
CORS_ORIGINS="http://localhost:53000" # delim by single space | ||
MAIL_SERVER="localhost" | ||
WEBSOCKET_ENDPOINT="ws://localhost:5000" # leave empty to disable; should NOT include path here, as it represents namespace ( https://socket.io/docs/v4/client-options/#path ) | ||
WEBSOCKET_ENDPOINT="ws://localhost:${BIND_PORT}" # leave empty to disable; should NOT include path here, as it represents namespace ( https://socket.io/docs/v4/client-options/#path ) | ||
WEBSOCKET_PATH="/socket.io/" | ||
WEBSOCKET_PATH_FOR_SERVER="${WEBSOCKET_PATH}" # should match with WEBSOCKET_PATH, except for the path removed by reverse proxy | ||
BEHIND_REVERSE_PROXY="false" | ||
# set to "true" if your app is behind a proxy, this helps to get real IP address | ||
# see: https://werkzeug.palletsprojects.com/en/latest/middleware/proxy_fix/#werkzeug.middleware.proxy_fix.ProxyFix | ||
PROXYFIX_EXTRA_KWARGS='{}' | ||
# e.g., {"x_prefix": 1, "x_host": 1} to make url_for work behind reverse proxy (like `URL Rewrite`) | ||
BIND_HOST="127.0.0.1" | ||
BIND_PORT="5000" | ||
SQLALCHEMY_DATABASE_URI="sqlite:///main.db" |
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,19 @@ | ||
<template> | ||
<div class="SidebarDelimLine"></div> | ||
</template> | ||
|
||
<script setup lang="ts"></script> | ||
<style> | ||
.SidebarDelimLine { | ||
border-color: currentColor; | ||
border-style: solid; | ||
border-width: 0 0 1px; | ||
opacity: 0.38; | ||
content: ""; | ||
/* position: absolute; */ | ||
top: 0; | ||
left: 0; | ||
width: 100%; | ||
height: 100%; | ||
} | ||
</style> |
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