summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--docs/docs/quickstart.md7
-rw-r--r--libs/shared/src/config.rs3
2 files changed, 8 insertions, 2 deletions
diff --git a/docs/docs/quickstart.md b/docs/docs/quickstart.md
index 216552e..6447ef7 100644
--- a/docs/docs/quickstart.md
+++ b/docs/docs/quickstart.md
@@ -19,3 +19,10 @@ hold tight this is going to be fast.
## Setting up a nova instance
+Clone the [example repo](https://github.com/discordnova/nova-quickstart.git) like so
+
+`git clone https://github.com/discordnova/nova-quickstart.git`,
+
+In this folder, find the `config.yml.example` file and rename it to match `config.yml`
+
+Next, you need to fill all the environment variables to match your discord bot.
diff --git a/libs/shared/src/config.rs b/libs/shared/src/config.rs
index 5e8cb51..52137a3 100644
--- a/libs/shared/src/config.rs
+++ b/libs/shared/src/config.rs
@@ -49,8 +49,7 @@ where
// try to load the config
settings.config = config.get::<T>(service_name)?;
- pretty_env_logger::init();
-
+
// start the monitoring system if needed
crate::monitoring::start_monitoring(&settings.monitoring);
Ok(settings)