update source link

This commit is contained in:
Jonny_Bro (Nikita) 2024-08-29 11:03:18 +05:00
parent 73bad99d2e
commit 387abcdcc2
No known key found for this signature in database
GPG key ID: 3F1ECC04147E9BD8
3 changed files with 9 additions and 18 deletions

View file

@ -1,6 +1,6 @@
<footer class="footer footer-center p-4 bg-base-300 text-base-content font-mono">
<div class="block">
Coperight @ Jonny_Bro & rlx 2077
<a class="link link-hover" target="_blank" href="https://git.jonnybro.ru/jonny_bro/beatrun-courses-server-express">[Full source code available here!]</a>
<a class="link link-hover" target="_blank" href="https://git.jonnybro.ru/jonny_bro/beatrun-courses-server-docker">[Full source code available here!]</a>
</div>
</footer>

View file

@ -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:

8
stack.env Normal file
View file

@ -0,0 +1,8 @@
PROD=true
DOMAIN=http://localhost:6547
PORT=6547
RATELIMIT=5000
IPCHANGETIME=10800000
STEAMKEY=NO_KEY
COOKIE=NO_COOKIE
WEBHOOK=""