Initial commit

This commit is contained in:
Yaser
2026-08-13 19:50:53 +03:30
commit 38084458fe
879 changed files with 95198 additions and 0 deletions

17
config/influxdb.yml Normal file
View File

@@ -0,0 +1,17 @@
default: &default
host: <%= ENV.fetch("INFLUXDB_HOST", "127.0.0.1").split(',') %>
port: <%= ENV.fetch("INFLUXDB_PORT", 8086) %>
username: <%= ENV.fetch("INFLUXDB_USER", "root") %>
password: <%= ENV.fetch("INFLUXDB_PASS", "root") %>
development:
<<: *default
database: peatio_development
test:
<<: *default
database: peatio_test
production:
<<: *default
database: <%= ENV.fetch('INFLUXDB_DATABASE_NAME', "peatio_production") %>