diff --git a/components/footer.html b/components/footer.html
index 21c7616..ba2381d 100644
--- a/components/footer.html
+++ b/components/footer.html
@@ -1,6 +1,6 @@
\ No newline at end of file
diff --git a/compose.yaml b/compose.yaml
index 8fd7c4c..1072847 100644
--- a/compose.yaml
+++ b/compose.yaml
@@ -2,23 +2,6 @@ services:
server:
build:
context: .
- environment:
- # Set true for production database
- PROD: true
- # Your domain without / at the end
- DOMAIN: http://localhost:6547
- # Port for the server
- PORT: 6547
- # How often can user send request to API
- RATELIMIT: 5000 # 5 seconds
- # How often can user change IP address
- IPCHANGETIME: 10800000 # 3 hours
- # Your SteamAPI key
- STEAMKEY: NO_KEY
- # Secret for a cookie
- COOKIE: NO_COOKIE
- # Discord webhook url or leave empty
- WEBHOOK: ""
env_file:
- stack.env
volumes:
diff --git a/stack.env b/stack.env
new file mode 100644
index 0000000..ab9dc98
--- /dev/null
+++ b/stack.env
@@ -0,0 +1,8 @@
+PROD=true
+DOMAIN=http://localhost:6547
+PORT=6547
+RATELIMIT=5000
+IPCHANGETIME=10800000
+STEAMKEY=NO_KEY
+COOKIE=NO_COOKIE
+WEBHOOK=""
\ No newline at end of file