2 Commits

Author SHA1 Message Date
bfadb1c2b2 chore: add the Docker compose symlink to .gitignore (#78) 2025-01-01 21:47:07 +00:00
5725c3e7da chore: add the Docker compose symlink to .gitignore
All checks were successful
actionlint check / actionlint check (pull_request) Successful in 13s
checkov check / checkov check (pull_request) Successful in 1m57s
conventional commit messages check / conventional commit messages check (pull_request) Successful in 9s
conventional pull request title check / conventional pull request title check (pull_request) Successful in 8s
dotenv-linter check / dotenv-linter check (pull_request) Successful in 9s
GitLeaks check / GitLeaks check (pull_request) Successful in 13s
hadolint check / hadolint check (pull_request) Successful in 16s
htmlhint check / htmlhint check (pull_request) Successful in 23s
markdownlint check / markdownlint check (pull_request) Successful in 22s
Prettier check / Prettier check (pull_request) Successful in 23s
Rust check / Rust check (pull_request) Successful in 30m17s
ShellCheck check / ShellCheck check (pull_request) Successful in 21s
Stylelint check / Stylelint check (pull_request) Successful in 26s
yamllint check / yamllint check (pull_request) Successful in 22s
2025-01-01 20:52:21 +01:00
5 changed files with 21 additions and 31 deletions

View File

@ -1,2 +1,2 @@
DATABASE_URL=postgres://app:app@localhost:5432/todo_baggins DATABASE_URL=postgres://app:app@db/todo_baggins
LANGUAGE_CODE=en-US LANGUAGE_CODE=en-US

2
.gitignore vendored
View File

@ -8,3 +8,5 @@
.env .env
.env.prod .env.prod
docker-compose.yaml

11
Cargo.lock generated
View File

@ -3677,15 +3677,6 @@ version = "0.1.5"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ff011a302c396a5197692431fc1948019154afc178baf7d8e37367442a4601cf" checksum = "ff011a302c396a5197692431fc1948019154afc178baf7d8e37367442a4601cf"
[[package]]
name = "openssl-src"
version = "300.4.1+3.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "faa4eac4138c62414b5622d1b31c5c304f34b406b013c079c2bbc652fdd6678c"
dependencies = [
"cc",
]
[[package]] [[package]]
name = "openssl-sys" name = "openssl-sys"
version = "0.9.104" version = "0.9.104"
@ -3694,7 +3685,6 @@ checksum = "45abf306cbf99debc8195b66b7346498d7b10c210de50418b5ccd7ceba08c741"
dependencies = [ dependencies = [
"cc", "cc",
"libc", "libc",
"openssl-src",
"pkg-config", "pkg-config",
"vcpkg", "vcpkg",
] ]
@ -5143,7 +5133,6 @@ dependencies = [
"dioxus-query", "dioxus-query",
"dotenvy", "dotenvy",
"feruca", "feruca",
"openssl",
"serde", "serde",
"serde_json", "serde_json",
"serde_with", "serde_with",

View File

@ -22,22 +22,21 @@ diesel_migrations = { version = "2.2.0", features = ["postgres"], optional = tru
dotenvy = { version = "0.15.7", optional = true } dotenvy = { version = "0.15.7", optional = true }
time = { version = "0.3.36", optional = true } time = { version = "0.3.36", optional = true }
async-std = { version = "1.12.0" } async-std = { version = "1.12.0", optional = true }
dioxus-i18n = { version = "0.3.0" } dioxus-i18n = { version = "0.3.0", optional = true }
dioxus-query = { version = "0.6.0" } dioxus-query = { version = "0.6.0", optional = true }
voca_rs = { version = "1.15.2" } voca_rs = { version = "1.15.2", optional = true }
[target.'cfg(target_os = "android")'.dependencies]
openssl = { version = "0.10", features = ["vendored"] }
[features] [features]
default = ["mobile"] default = ["web"]
desktop = ["dioxus/desktop"] desktop = ["dioxus/desktop"]
mobile = [ mobile = ["dioxus/mobile"]
"dioxus/mobile",
]
web = [ web = [
"dioxus/web", "dioxus/web",
"dep:async-std",
"dep:dioxus-query",
"dep:dioxus-i18n",
"dep:voca_rs"
] ]
server = [ server = [
"dioxus/server", "dioxus/server",

View File

@ -13,11 +13,11 @@ stdout_logfile=/dev/fd/1
stdout_logfile_maxbytes=0 stdout_logfile_maxbytes=0
redirect_stderr=true redirect_stderr=true
# [program:dx] [program:dx]
# command=dx serve --addr 0.0.0.0 --port 8000 command=dx serve --addr 0.0.0.0 --port 8000
# directory=/srv/app directory=/srv/app
# autostart=true autostart=true
# autorestart=true autorestart=true
# stdout_logfile=/dev/fd/1 stdout_logfile=/dev/fd/1
# stdout_logfile_maxbytes=0 stdout_logfile_maxbytes=0
# redirect_stderr=true redirect_stderr=true