From 897b9273fc411dbc79ed6b6a9998ea1b46243924 Mon Sep 17 00:00:00 2001 From: Melora Hugues Date: Sun, 29 Oct 2023 13:27:13 +0100 Subject: [PATCH] Add envrc to facilitate development --- .envrc | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .envrc diff --git a/.envrc b/.envrc new file mode 100644 index 0000000..cc47c63 --- /dev/null +++ b/.envrc @@ -0,0 +1,18 @@ +# Can be debug,info,warning,error +export LOG_LEVEL=debug + +# Can be net,unix +export SERVER_MODE=net +export SERVER_HOST="0.0.0.0" +export SERVER_PORT="5000" +# SERVER_SOCK_PATH = "" + +export STORAGE_TYPE="sqlite" +export STORAGE_FILEPATH="./build/polyculeconnect.db" +# STORAGE_HOST = "127.0.0.1" +# STORAGE_PORT = "5432" +# STORAGE_DB = "polyculeconnect" +# STORAGE_USER = "polyculeconnect" +# STORAGE_PASSWORD = "polyculeconnect" +# STORAGE_SSL_MODE = "disable" +# STORAGE_SSL_CA_FILE = "" \ No newline at end of file