-
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.
feat(webui): initial web ui release (#171)
- Loading branch information
1 parent
7f190f7
commit 94560d2
Showing
117 changed files
with
5,507 additions
and
647 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,6 +1,18 @@ | ||
# Default configuration values. These are overwritten by docker-compose.yml environment variables | ||
VALENTINA_LOG_FILE = "/valentina/valentina.log" | ||
VALENTINA_LOG_LEVEL_AWS = "ERROR" # Log level for AWS S3 client | ||
VALENTINA_LOG_LEVEL_HTTP = "INFO" # Log level for discord HTTP, gateway, webhook, client events | ||
VALENTINA_LOG_LEVEL = "INFO" # Overall log level for the bot | ||
VALENTINA_LOG_LEVEL_PYMONGO = "ERROR" # Log level for pymongo | ||
VALENTINA_LOG_FILE=/valentina.log | ||
VALENTINA_LOG_LEVEL_AWS=ERROR | ||
VALENTINA_LOG_LEVEL_HTTP=INFO | ||
VALENTINA_LOG_LEVEL=INFO | ||
VALENTINA_LOG_LEVEL_PYMONGO=ERROR | ||
|
||
VALENTINA_WEBUI_ENABLE=true | ||
VALENTINA_WEBUI_PORT=8088 | ||
|
||
# Set to 0.0.0.0 in Docker | ||
VALENTINA_WEBUI_HOST=127.0.0.1 | ||
|
||
# Used for Discord oauth callback url | ||
VALENTINA_WEBUI_BASE_URL=http://127.0.0.1:8088 | ||
VALENTINA_WEBUI_LOG_LEVEL=DEBUG | ||
VALENTINA_WEBUI_DEBUG=true | ||
VALENTINA_REDIS_ADDR=127.0.0.1:6379 |
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 |
---|---|---|
@@ -0,0 +1,6 @@ | ||
{ | ||
"files.associations": { | ||
"*.html": "jinja-html", | ||
"*.html.j2": "jinja-html" | ||
} | ||
} |
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,16 +1,19 @@ | ||
--- | ||
version: '3.8' | ||
version: "3.8" | ||
services: | ||
valentina: | ||
image: ghcr.io/natelandau/valentina:latest | ||
hostname: valentina | ||
container_name: valentina | ||
network_mode: "bridge" | ||
volumes: | ||
- path/to/dir:/valentina # Persistent storage for the database | ||
environment: | ||
- VALENTINA_DISCORD_TOKEN=TOKEN # Your discord bot token | ||
- VALENTINA_GUILDS=ID1,ID2 # Guild IDs where you will run the bot, comma separated | ||
- VALENTINA_OWNER_IDS=ID1,ID2 # Discord user IDs for bot owners | ||
- VALENTINA_LOG_LEVEL=INFO # TRACE, DEBUG, INFO, WARNING, ERROR, CRITICAL | ||
restart: unless-stopped | ||
valentina: | ||
image: ghcr.io/natelandau/valentina:latest | ||
hostname: valentina | ||
container_name: valentina | ||
network_mode: "bridge" | ||
# Uncomment if using the web interface | ||
# ports: | ||
# - ${VALENTINA_WEBUI_PORT}:${VALENTINA_WEBUI_PORT} | ||
volumes: | ||
- path/to/dir:/valentina # Persistent storage for the database | ||
environment: | ||
- VALENTINA_DISCORD_TOKEN=TOKEN # Your discord bot token | ||
- VALENTINA_GUILDS=ID1,ID2 # Guild IDs where you will run the bot, comma separated | ||
- VALENTINA_OWNER_IDS=ID1,ID2 # Discord user IDs for bot owners | ||
- VALENTINA_LOG_LEVEL=INFO # TRACE, DEBUG, INFO, WARNING, ERROR, CRITICAL | ||
restart: unless-stopped |
Oops, something went wrong.