generated from OBJNULL/Dockerized-Rust
Created template
This commit is contained in:
parent
bfca15d47b
commit
c4ae50419d
1 changed files with 35 additions and 0 deletions
35
data/settings.yaml.template
Normal file
35
data/settings.yaml.template
Normal file
|
|
@ -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
|
||||
Loading…
Reference in a new issue