summarylogtreecommitdiffstats
path: root/earthwalker.env
diff options
context:
space:
mode:
authorMarkus Richter2021-02-19 11:25:38 +0100
committerMarkus Richter2021-02-19 11:35:29 +0100
commite28cfc55f1dc161a6cadc17fdb317e1a30f25538 (patch)
tree5b71155353bb8329c9b5fa97da542d85b4d90409 /earthwalker.env
parentaf0cf549248f357e1cbd097a5ffd6fcde2c1a904 (diff)
downloadaur-earthwalker-git.tar.gz
Remove path fix, use proper config, polish and publish
Diffstat (limited to 'earthwalker.env')
-rw-r--r--earthwalker.env25
1 files changed, 0 insertions, 25 deletions
diff --git a/earthwalker.env b/earthwalker.env
deleted file mode 100644
index 9e7cc7c2d5cd..000000000000
--- a/earthwalker.env
+++ /dev/null
@@ -1,25 +0,0 @@
-### IMPORTANT!!! THIS FILE IS NO LONGER USED! ANYTHING IN HERE CAN BE CONFIGURED IN CONFIG.TOML/EARTHWALKER.SERVICE!!! ###
-
-### Paths
-
-# The path where the static files, like javascript and templates are located.`static` and `templates` are expected to be subdirectories of the specified path. Defaults to the location of the binary.
-#EARTHWALKER_STATIC_PATH=<location of binary>
-EARTHWALKER_STATIC_PATH=/usr/share/earthwalker/public
-
-
-# The path where the config file is located. Defaults to $PWD/config.toml
-#EARTHWALKER_CONFIG_PATH=config.toml
-EARTHWALKER_CONFIG_PATH=/etc/earthwalker/config.toml
-
-# The path where the database is located. Defaults to <the dir where the binary is located>/badger
-#EARTHWALKER_DB_PATH=/badger
-EARTHWALKER_DB_PATH=/badger
-# Defines if the path is relative to the executable(`executable`), relative to the current working dir(`cwd`) or absolute(`absolute`). Defaults to `executable`.
-#EARTHWALKER_DB_PATH_REL=executable
-EARTHWALKER_DB_PATH_REL=cwd
-
-
-### Web settings
-
-# The tcp port on which earthwalker listens.
-#EARTHWALKER_PORT=8080