Skip to content

Commit

Permalink
new proxy
Browse files Browse the repository at this point in the history
  • Loading branch information
AdrienPensart committed Apr 12, 2024
1 parent 7a54c88 commit b2e96ff
Show file tree
Hide file tree
Showing 16 changed files with 1,608 additions and 1,007 deletions.
42 changes: 0 additions & 42 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@ Commands
-h, --help Show this message and exit.
Commands:
completion Shell completion
console Starts interpreter
database (db,edgedb) DB management
folder Manage folders
Expand All @@ -36,47 +35,6 @@ Commands
version Print version
youtube Youtube tool
musicbot completion
*******************
.. code-block::
Usage: musicbot completion [OPTIONS] COMMAND [ARGS]...
Shell completion subcommand
Options:
-h, --help Show this message and exit.
Commands:
help Print help
install Install the click-completion-command completion
show (generate,print) Show the click-completion-command completion code
musicbot completion install
***************************
.. code-block::
Usage: musicbot completion install [OPTIONS] [[bash|fish|zsh|powershell]] [PATH]
Auto install shell completion code in your rc file
Options:
-i, --case-insensitive Case insensitive completion
--append / --overwrite Append the completion code to the file
-h, --help Show this message and exit.
musicbot completion show
************************
.. code-block::
Usage: musicbot completion show [OPTIONS] [[bash|fish|zsh|powershell]]
Generate shell code to enable completion
Options:
-i, --case-insensitive Case insensitive completion
-h, --help Show this message and exit.
musicbot console
****************
.. code-block::
Expand Down
8 changes: 5 additions & 3 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ version: '3'
services:
musicbot_db_prod:
container_name: musicbot-db-prod
image: "edgedb/edgedb:4"
image: "edgedb/edgedb:5.0-beta.2"
restart: always
ports:
- 5656:5656
Expand All @@ -13,6 +13,7 @@ services:
EDGEDB_SERVER_TLS_CERT_MODE: generate_self_signed
EDGEDB_SERVER_SECURITY: insecure_dev_mode
EDGEDB_SERVER_HTTP_ENDPOINT_SECURITY: optional
EDGEDB_SERVER_BINARY_ENDPOINT_SECURITY: optional
EDGEDB_SERVER_USER: musicbot
EDGEDB_SERVER_PASSWORD: musicbot
volumes:
Expand All @@ -21,7 +22,7 @@ services:
- musicbot-prod-data:/var/lib/edgedb/data
musicbot_db_test:
container_name: musicbot-db-test
image: "edgedb/edgedb:4"
image: "edgedb/edgedb:5.0-beta.2"
restart: always
ports:
- 5657:5656
Expand All @@ -32,7 +33,8 @@ services:
EDGEDB_SERVER_ADMIN_UI: enabled
EDGEDB_SERVER_USER: testuser
EDGEDB_SERVER_PASSWORD: testpass
# EDGEDB_SERVER_HTTP_ENDPOINT_SECURITY: optional
EDGEDB_SERVER_HTTP_ENDPOINT_SECURITY: optional
EDGEDB_SERVER_BINARY_ENDPOINT_SECURITY: optional
volumes:
- ./dbschema:/dbschema

Expand Down
2 changes: 1 addition & 1 deletion edgedb.toml
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
[edgedb]
server-version = "4.0"
server-version = "*"
Loading

0 comments on commit b2e96ff

Please sign in to comment.