-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update readme. Remove openapi.json and adjust workflows. (#26)
* readme-fix: remove warning about cli tool. Update version in docker-compose.yml to match. * Updated readme.md. Fully remove openapi.json. Remove version cmp beteen Cargo.toml and openapi.json. Added openapi.josn to gitignore.
- Loading branch information
Showing
6 changed files
with
1,240 additions
and
1,257 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 |
---|---|---|
|
@@ -3,7 +3,7 @@ name: "Test" | |
on: | ||
push: | ||
branches: | ||
- "dev" # matches every branch | ||
- "dev" | ||
|
||
jobs: | ||
push-to-registry: | ||
|
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 |
---|---|---|
|
@@ -4,3 +4,4 @@ sites-uploads | |
logs | ||
test_upload_files | ||
.env | ||
openapi.json |
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,6 +1,6 @@ | ||
[package] | ||
name = "sero" | ||
version = "0.2.7" | ||
version = "0.2.8" | ||
edition = "2021" | ||
authors = ["clowzed <[email protected]>"] | ||
description = "Muiltidomain static site hosting" | ||
|
@@ -11,19 +11,19 @@ license = "MIT" | |
[dependencies] | ||
envy = "0.4.2" | ||
sea-orm = { version = "0.12.3", features = [ | ||
"sqlx-postgres", | ||
"runtime-tokio-rustls", | ||
"macros", | ||
"sqlx-postgres", | ||
"runtime-tokio-rustls", | ||
"macros", | ||
] } | ||
tokio = { version = "1.32.0", features = ["full"] } | ||
tokio-postgres = "0.7.10" | ||
tracing = { version = "0.1.37", features = ["async-await"] } | ||
tracing-subscriber = { version = "0.3.17", features = [ | ||
"env-filter", | ||
"fmt", | ||
"ansi", | ||
"std", | ||
"json", | ||
"env-filter", | ||
"fmt", | ||
"ansi", | ||
"std", | ||
"json", | ||
] } | ||
entity = { path = "entity" } | ||
migration = { path = "migration" } | ||
|
@@ -41,9 +41,9 @@ mime = "0.3.17" | |
mime_guess = "2.0.4" | ||
argon2 = { version = "0.5.3", features = ["std"] } | ||
utoipa = { version = "4.2.0", features = [ | ||
"axum_extras", | ||
"chrono", | ||
"preserve_order", | ||
"axum_extras", | ||
"chrono", | ||
"preserve_order", | ||
] } | ||
dotenvy = "0.15.7" | ||
toml = "0.8.8" | ||
|
@@ -52,16 +52,16 @@ utoipa-rapidoc = { version = "4.0.0", features = ["axum"] } | |
utoipa-redoc = { version = "4.0.0", features = ["axum"] } | ||
utoipa-swagger-ui = { version = "7.1.0", features = ["axum"] } | ||
axum = { version = "0.7.4", features = [ | ||
"macros", | ||
"tracing", | ||
"json", | ||
"multipart", | ||
"macros", | ||
"tracing", | ||
"json", | ||
"multipart", | ||
] } | ||
axum_typed_multipart = "0.11.0" | ||
tower-http = { git = "https://github.com/tower-rs/tower-http.git", features = [ | ||
"cors", | ||
"trace", | ||
"timeout", | ||
"cors", | ||
"trace", | ||
"timeout", | ||
] } | ||
tower = { version = "0.4.13", features = ["util"] } | ||
hyper = "0.14.28" | ||
|
Oops, something went wrong.