From 6160b4fdc5f37e4ceaa6b3c5acc855f466049d61 Mon Sep 17 00:00:00 2001 From: Alexander Neonxp Kiryukhin Date: Sun, 6 Oct 2024 17:04:37 +0300 Subject: Первая версия MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- config/dev.yaml | 9 +++++++++ config/prod.yaml | 9 +++++++++ 2 files changed, 18 insertions(+) create mode 100644 config/dev.yaml create mode 100644 config/prod.yaml (limited to 'config') diff --git a/config/dev.yaml b/config/dev.yaml new file mode 100644 index 0000000..95acdeb --- /dev/null +++ b/config/dev.yaml @@ -0,0 +1,9 @@ +debug: true + +db: + dsn: "postgres://shorg:shorg@localhost:5432/shorg?sslmode=disable" + +listen: :8000 + +admins: + admin: password \ No newline at end of file diff --git a/config/prod.yaml b/config/prod.yaml new file mode 100644 index 0000000..9f8aa71 --- /dev/null +++ b/config/prod.yaml @@ -0,0 +1,9 @@ +debug: true + +db: + dsn: "postgres://postgres:@localhost:5432/test?sslmode=disable" + +listen: :8000 + +admins: + admin: password \ No newline at end of file -- cgit v1.2.3