update source link
This commit is contained in:
parent
73bad99d2e
commit
387abcdcc2
3 changed files with 9 additions and 18 deletions
|
@ -1,6 +1,6 @@
|
||||||
<footer class="footer footer-center p-4 bg-base-300 text-base-content font-mono">
|
<footer class="footer footer-center p-4 bg-base-300 text-base-content font-mono">
|
||||||
<div class="block">
|
<div class="block">
|
||||||
Coperight @ Jonny_Bro & rlx 2077
|
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>
|
</div>
|
||||||
</footer>
|
</footer>
|
17
compose.yaml
17
compose.yaml
|
@ -2,23 +2,6 @@ services:
|
||||||
server:
|
server:
|
||||||
build:
|
build:
|
||||||
context: .
|
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:
|
env_file:
|
||||||
- stack.env
|
- stack.env
|
||||||
volumes:
|
volumes:
|
||||||
|
|
8
stack.env
Normal file
8
stack.env
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
PROD=true
|
||||||
|
DOMAIN=http://localhost:6547
|
||||||
|
PORT=6547
|
||||||
|
RATELIMIT=5000
|
||||||
|
IPCHANGETIME=10800000
|
||||||
|
STEAMKEY=NO_KEY
|
||||||
|
COOKIE=NO_COOKIE
|
||||||
|
WEBHOOK=""
|
Loading…
Reference in a new issue