-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
0a3662d
commit 2996b91
Showing
32 changed files
with
266 additions
and
206 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -18,4 +18,4 @@ uploads | |
/build/ | ||
/captures/ | ||
test.go | ||
/dist/ | ||
/dist/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,86 @@ | ||
{ | ||
"gin": { | ||
"cors": { | ||
"allow_methods": ["GET", "POST", "PUT", "DELETE"], | ||
"allow_origins": ["*"] | ||
}, | ||
"jwt": { | ||
"expiration": 180 | ||
}, | ||
"cache": { | ||
"provider": "memory", | ||
"redis": { | ||
"host": "cache", | ||
"port": 6379, | ||
"password": "", | ||
"db": 0 | ||
} | ||
}, | ||
"host": "0.0.0.0", | ||
"port": 8888 | ||
}, | ||
"container": { | ||
"provider": "docker", | ||
"entry": "127.0.0.1", | ||
"docker": { | ||
"uri": "unix:///var/run/docker.sock" | ||
}, | ||
"k8s": { | ||
"namespace": "default", | ||
"config": { | ||
"path": "./configs/k8s.yml" | ||
} | ||
}, | ||
"proxy": { | ||
"enabled": false, | ||
"type": "ws", | ||
"traffic_capture": { | ||
"enabled": false | ||
} | ||
} | ||
}, | ||
"db": { | ||
"provider": "sqlite", | ||
"postgres": { | ||
"dbname": "cloudsdale", | ||
"host": "db", | ||
"username": "cloudsdale", | ||
"password": "cloudsdale", | ||
"port": 5432, | ||
"sslmode": "disable" | ||
}, | ||
"mysql": { | ||
"dbname": "cloudsdale", | ||
"host": "db", | ||
"username": "cloudsdale", | ||
"password": "cloudsdale", | ||
"port": 3306 | ||
}, | ||
"sqlite": { | ||
"path": "./db/db.sqlite" | ||
} | ||
}, | ||
"email": { | ||
"address": "", | ||
"password": "", | ||
"smtp": { | ||
"host": "", | ||
"port": 0 | ||
} | ||
}, | ||
"captcha": { | ||
"enabled": false, | ||
"provider": "turnstile", | ||
"turnstile": { | ||
"url": "https://challenges.cloudflare.com/turnstile/v0/siteverify", | ||
"site_key": "", | ||
"secret_key": "" | ||
}, | ||
"recaptcha": { | ||
"url:": "https://www.google.com/recaptcha/api/siteverify", | ||
"site_key": "", | ||
"secret_key": "", | ||
"threshold": 0.5 | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
{ | ||
"site": { | ||
"description": "Hack for fun not for profit.", | ||
"title": "Cloudsdale" | ||
}, | ||
"container": { | ||
"parallel_limit": 1, | ||
"request_limit": 0 | ||
}, | ||
"user": { | ||
"registration": { | ||
"enabled": true, | ||
"email": { | ||
"domain": [], | ||
"verification": false | ||
} | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.