From c4ae50419dc10b7f2a94df4e8695e4e9867824b9 Mon Sep 17 00:00:00 2001 From: Maddox Werts Date: Tue, 11 Feb 2025 11:58:33 -0500 Subject: [PATCH] Created template --- data/settings.yaml.template | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 data/settings.yaml.template diff --git a/data/settings.yaml.template b/data/settings.yaml.template new file mode 100644 index 0000000..4311b2f --- /dev/null +++ b/data/settings.yaml.template @@ -0,0 +1,35 @@ +# NeuroStock Configuration Version +version: "1.0" + +# Database Information +database: + address: "db:3306" # If hosting in Docker, keep it this way. + name: "neurostock" # Database Name + user: "neurostock" # MYSQL Username + pass: "changeme" # MYSQL Password + +# Stock updater information +updater: + frequency: 15 # API Updater Cooldown in MINUTES + marketstack: + key: "changeme" # Market Stack API Key + alphavantage: + key: "changeme" # Vantage Alpha API Key + +# API Endpoint information +api: + port: 3080 + endpoint: "v1" + +# General NeuroStock Information +general: + api: "alphavantage" # API Used in Production + method: "eod" # API Entrypoint Method + interval: 15 # API Request interval in MINUTES + historical: # API Historical Data + from: "2000-01-01" + to: "2025-01-19" + tracked: # A list of tracked stocks + - NVDA + - TSLA + - RSP \ No newline at end of file