-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #4 from martinjirku/dev
first important merge to main
- Loading branch information
Showing
191 changed files
with
5,355 additions
and
3,068 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 |
---|---|---|
@@ -0,0 +1,47 @@ | ||
root = "." | ||
testdata_dir = "testdata" | ||
tmp_dir = "tmp" | ||
|
||
[build] | ||
args_bin = ["--host", "localhost", "--public", "./dist"] | ||
bin = "./tmp/main" | ||
cmd = "go build -o ./tmp/main ./main.go" | ||
delay = 200 | ||
exclude_dir = ["assets", "tmp", "vendor", "node_modules", "public"] | ||
# exclude_file = [] | ||
# exclude_regex = [] | ||
exclude_unchanged = false | ||
follow_symlink = false | ||
# full_bin = "" | ||
include_dir = ["handlers", "models", "services", "utils", "pkg", "templates"] | ||
include_ext = ["go", "tmpl"] | ||
include_file = ["main.go", "dist/assets/style-*.css"] | ||
kill_delay = 5000000000 # nanosecond | ||
log = "build-errors.log" | ||
poll = false | ||
poll_interval = 0 | ||
# Workaround for shutting down the server (https://github.com/cosmtrek/air/issues/534) | ||
post_cmd = ["lsof -i tcp:8080 | awk 'NR==2{print $2}' | xargs kill"] | ||
pre_cmd = [] | ||
rerun = false | ||
rerun_delay = 500 | ||
send_interrupt = true | ||
stop_on_error = true | ||
|
||
[color] | ||
app = "" | ||
build = "yellow" | ||
main = "magenta" | ||
runner = "green" | ||
watcher = "cyan" | ||
|
||
[log] | ||
main_only = false | ||
time = false | ||
|
||
[misc] | ||
clean_on_exit = false | ||
|
||
[screen] | ||
clear_on_rebuild = false | ||
keep_scroll = true |
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 |
---|---|---|
@@ -1,7 +1,9 @@ | ||
/node_modules | ||
*.log | ||
.DS_Store | ||
.env | ||
/.cache | ||
/public/build | ||
/build | ||
# flyctl launch added from .gitignore | ||
**/node_modules | ||
**/public | ||
**/tmp | ||
**/dist | ||
**/.env | ||
**/vendor/**/* | ||
fly.toml | ||
**/.task |
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 |
---|---|---|
@@ -1,3 +1,12 @@ | ||
DATABASE_URL="file:./data.db?connection_limit=1" | ||
SESSION_SECRET="5c95f3f3875ca0a5534b3397b0d24771e360ba892095af503083d8eac87b770f" | ||
|
||
GOOGLE_API_KEY="" | ||
GOOGLE_CAPTCHA_SITE="" | ||
GOOGLE_CALENDAR_ID="" # mcmamina | ||
GOOGLE_SMTP_PWD="" | ||
GOOGLE_SMTP_MAIL="" | ||
GOOGLE_AUTH_CLIENT_ID="" | ||
GOOGLE_AUTH_CLIENT_SECRET="" | ||
GOOGLE_AUTH_REDIRECT_PATH="" | ||
POSTGRES_DB="" | ||
POSTGRES_USER="" | ||
POSTGRES_PASSWORD="" | ||
PANORAMA_URL="http://mcmamina.panfoto.sk/" |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
|
@@ -3,4 +3,4 @@ updates: | |
- package-ecosystem: github-actions | ||
directory: / | ||
schedule: | ||
interval: daily | ||
interval: weekly |
Oops, something went wrong.