-
Notifications
You must be signed in to change notification settings - Fork 22
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Added the missing documentation for `urchin_config.toml`. - Updated name in MIT license. - Minor changes due to feedback.
- Loading branch information
Showing
6 changed files
with
49 additions
and
27 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 |
---|---|---|
@@ -1,14 +1,16 @@ | ||
# MySQL environment variables | ||
MYSQL_ADDRESS=localhost | ||
MYSQL_PORT=3306 | ||
MYSQL_ROOT_PASSWORD=password | ||
MYSQL_DATABASE=urchin | ||
MYSQL_USER=urchin | ||
MYSQL_PASSWORD=urchinpw | ||
|
||
# Urchin environment variables | ||
URCHIN_DATABASE_ADDRESS=localhost | ||
URCHIN_DATABASE_PORT=3306 | ||
URCHIN_DATABASE_USER=urchin | ||
URCHIN_DATABASE_PASSWORD=urchinpw | ||
URCHIN_DATABASE_NAME=urchin | ||
URCHIN_WEBSERVER_PORT=8081 | ||
URCHIN_IMAGE_DIRECTORY=./images | ||
# Urchin environment variables, can be used as fallback for starting the application | ||
# URCHIN_DATABASE_ADDRESS=localhost | ||
# URCHIN_DATABASE_PORT=3306 | ||
# URCHIN_DATABASE_USER=urchin | ||
# URCHIN_DATABASE_PASSWORD=urchinpw | ||
# URCHIN_DATABASE_NAME=urchin | ||
# URCHIN_WEBSERVER_PORT=8081 | ||
# URCHIN_IMAGE_DIRECTORY=./images |
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 |
---|---|---|
|
@@ -2,4 +2,3 @@ | |
**/__debug* | ||
**/*_templ.go | ||
tmp/ | ||
**/main |
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,4 +1,4 @@ | ||
Copyright 2024 Matheus Gomes Garcia <[email protected]> | ||
Copyright 2024 Matheus Gomes <[email protected]> | ||
|
||
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the “Software”), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: | ||
|
||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,4 +7,4 @@ services: | |
ports: | ||
- 3306:3306 | ||
env_file: | ||
- ../.dev.env | ||
- ../.dev.env |
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