Fixes to docker compose version.

This commit is contained in:
Ada Werefox 2024-11-11 18:10:14 -06:00
parent 7599a1acbc
commit e6bf036401
159 changed files with 41 additions and 27 deletions

29
Cargo.lock generated
View File

@ -3112,9 +3112,9 @@ dependencies = [
[[package]]
name = "time"
version = "0.3.34"
version = "0.3.36"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c8248b6521bb14bc45b4067159b9b6ad792e2d6d754d6c41fb50e29fefe38749"
checksum = "5dfd88e563464686c916c7e46e623e520ddc6d79fa6641390f2e3fa86e83e885"
dependencies = [
"deranged",
"js-sys",
@ -3135,9 +3135,9 @@ checksum = "ef927ca75afb808a4d64dd374f00a2adf8d0fcff8e7b184af886c3c87ec4a3f3"
[[package]]
name = "time-macros"
version = "0.2.17"
version = "0.2.18"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7ba3a3ef41e6672a2f0f001392bb5dcd3ff0a9992d618ca761a11c3121547774"
checksum = "3f252a68540fde3a3877aeea552b832b40ab9a69e318efd078774a01ddee1ccf"
dependencies = [
"num-conv",
"time-core",
@ -3598,19 +3598,20 @@ checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
[[package]]
name = "wasm-bindgen"
version = "0.2.92"
version = "0.2.93"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4be2531df63900aeb2bca0daaaddec08491ee64ceecbee5076636a3b026795a8"
checksum = "a82edfc16a6c469f5f44dc7b571814045d60404b55a0ee849f9bcfa2e63dd9b5"
dependencies = [
"cfg-if",
"once_cell",
"wasm-bindgen-macro",
]
[[package]]
name = "wasm-bindgen-backend"
version = "0.2.92"
version = "0.2.93"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "614d787b966d3989fa7bb98a654e369c762374fd3213d212cfc0251257e747da"
checksum = "9de396da306523044d3302746f1208fa71d7532227f15e347e2d93e4145dd77b"
dependencies = [
"bumpalo",
"log",
@ -3635,9 +3636,9 @@ dependencies = [
[[package]]
name = "wasm-bindgen-macro"
version = "0.2.92"
version = "0.2.93"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a1f8823de937b71b9460c0c34e25f3da88250760bec0ebac694b49997550d726"
checksum = "585c4c91a46b072c92e908d99cb1dcdf95c5218eeb6f3bf1efa991ee7a68cccf"
dependencies = [
"quote",
"wasm-bindgen-macro-support",
@ -3645,9 +3646,9 @@ dependencies = [
[[package]]
name = "wasm-bindgen-macro-support"
version = "0.2.92"
version = "0.2.93"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e94f17b526d0a461a191c78ea52bbce64071ed5c04c9ffe424dcb38f74171bb7"
checksum = "afc340c74d9005395cf9dd098506f7f44e38f2b4a21c6aaacf9a105ea5e1e836"
dependencies = [
"proc-macro2",
"quote",
@ -3658,9 +3659,9 @@ dependencies = [
[[package]]
name = "wasm-bindgen-shared"
version = "0.2.92"
version = "0.2.93"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "af190c94f2773fdb3729c55b007a722abb5384da03bc0986df4c289bf5567e96"
checksum = "c62a0a307cb4a311d3a07867860911ca130c3494e8c2719593806c08bc5d0484"
[[package]]
name = "wasm-streams"

View File

@ -13,6 +13,7 @@ log = "0.4.17"
manganis = "0.2.2"
serde = "1.0.199"
toml = "0.8.12"
time = { version = "0.3.36", features = ["wasm-bindgen", "macros", "local-offset"]}
[dependencies.dioxus-router]
version = "0.5.0"
@ -22,14 +23,9 @@ features = ["fullstack"]
version = "0.5.1"
features = ["fullstack", "router"]
[features]
default = []
server = ["dioxus/axum", "dep:megalodon", "dep:tokio"]
web = ["dioxus/web"]
[dependencies.time]
verison = "0.3.34"
features = ["wasm-bindgen", "macros", "local-offset"]
#[dependencies.time]
#verison = "0.3.36"
#features = ["wasm-bindgen", "macros", "local-offset"]
[dependencies.megalodon]
version = "0.13.4"
@ -38,3 +34,8 @@ optional = true
[dependencies.tokio]
version = "1.37.0"
optional = true
[features]
default = []
server = ["dioxus/axum", "dep:megalodon", "dep:tokio"]
web = ["dioxus/web"]

View File

@ -2,7 +2,7 @@ FROM rust:alpine
WORKDIR /usr/src/app
RUN apk add --update musl-dev openssl openssl-dev
RUN apk add --update musl-dev openssl openssl-dev openssl-libs-static
COPY public/ public/
COPY data/ data/
@ -16,4 +16,4 @@ ENV OPENSSL_NO_VENDOR=1
RUN cargo fetch && cargo install dioxus-cli --locked
RUN dx build --release
CMD ["dx", "serve", "--release"]
CMD ["./dist/info-werefox-cafe"]

View File

@ -1,5 +1,4 @@
---
version: "3"
services:
app:
@ -7,4 +6,4 @@ services:
build:
context: .
ports:
- "8080:8345"
- "8471:8471"

BIN
public/emoji/18_plus.svg.br Normal file

Binary file not shown.

Binary file not shown.

Binary file not shown.

BIN
public/emoji/:alice:.png.br Normal file

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

BIN
public/emoji/awoo.svg.br Normal file

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@ -0,0 +1,5 @@
ÕŒ% Ùiŵ´?®½E<C2BD>¬k̦5Ç *&¯[ÅÄM†©
öüÚª» ˆ$R¦Dh0où+o?'bÕÄãÒ‰u“tIC¼”Îñ¼¶žt<19>©t
—Šy¿¨‡ƒgÓl“9Ìz# ï¶âpžü¹I(t·ÛŒž<C592>ÃÃ}ý™É6àDVfU5ÄúpžÐöáq8aIpøäëÏS€¤G0冯¾>&+2 ÖôÂ¥Y'áqç¥7ט@@ðüI&qxþÊÈ­çžH2Þ^²fÎwŸtî@Íà”UÕLàÍ~H½ÏšÌ»Å_õŽûÙõUÈ1‡(h((—5Yã”ó.ðcCo±ë=ø“:UWÿ“õæÈýòõ7÷[δ@<:˜.tR6Zùùú-”²²¾ƒ&4ZEˆW”lŠë`Ãìße²áó ¤±^y 3­iȪ GËÇ;àJ1a\HnPÀ“"纚 {«‚ê­;¯8ä­Hsú¿\±ŸògP¤ÌbÛŠ3&Ÿ<> <20>ÍrÈÉ$´u?}?é¿åOcñ“|èMד8¤ÃaúZí7QNša£І=P9ÂNdQOuÃÞa:åAÔÈUÜa<C39C>âAo»ÝÝ?<1D>üºw†o˜V .°šGû Á”{%Ö
cjŠÐsúC\pÞH¶Ì—ÈÈe—EÀCvDDÙiЅч½â'à€aLÔÀMMønC²9vGhɬ
I•Ÿ/“ô0%XS ùÇlÛi&»‘žß˜æ‹±„*WfæèÑxÎË¿ÃÜ`†£ß–^· OñÈB÷ÿÍ 7eù3%¨Tfõ.±êv»ƒÚ¥mœ5Lú÷Ü~Ò}ë1)2à_6j—Ë°¡šnMž«ÔéqÞ3yå¿äúÒiPΠÖ!£Óg<05>•¬Ïru»²¥o(m?ÐU‰Í•-xµFûþsr²v*ô\Vå@Uöíz°õÒ$"ΰpž®($®™&î"eäÅDÏ>R«5ùBQÁŽ

Binary file not shown.

Binary file not shown.

BIN
public/emoji/fox.svg.br Normal file

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@ -0,0 +1,3 @@
з@┘qЦС┌(╠C╫у. Г╔zHц÷@у┼hТ╛Ю\;IНюJF╖│'∙├"ч>а╕2ЮЫТМшШz*║>p`╔яe3▄0ю`Фж2а~ШлРн-╔_тqr>М7Б[`_fр`╪vp#'Ы<G║T█wюЪхБ╒aрё╗СQ"АZUЯrYЮ╚÷в╠▌╣J┘≥▌ЕHП'ОЧ╙▐П├▒u╢_йжпhРМДВZhDыВi╔@▐▀(я┬}Р8╥aD7AQЕ/У╚╞╫СКХ?3го6╛В┐╛з&┌Т╢╔D{<·Юx■цJю╥Aв⌠"ю)яs╥╔B╗⌠С/ы
╗:▐q╓б(qgLыхз~ЁPuН╒lcTJуп▄Эы*biй д·с╤зxVЦрЯ*ЛФ│А╤
|М&╪щД┴fъКх┴O└Dxщ▌G[÷Е ▐вN~╚Н}Г╔lъ╨Тv╨MШ╛eq╟≈≥hRв│├ы╣

Binary file not shown.

BIN
public/emoji/inbox.svg.br Normal file

Binary file not shown.

Binary file not shown.

BIN
public/emoji/laptop.svg.br Normal file

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@ -0,0 +1,4 @@
є Й9єBИћХЊhY5ЇВ;§pї!іdDZV<5A>ТЩрd*<2A>Н одЭжy<04>_ сЃ.p@<40>$(M4н&<26> <0B>!ЁшеSїњў:<п7lЬ8іЂ<> L9<4C>!<21>§џ4дЌ(`
H
<EFBFBD>zлэяЮАT<06>ў0мmgѓТu
zIЂ.@њЊ<D19A>cурxр<78><61>TdЏ<64>иNGФђђЙц&ЁЋuэq<D18D>>t& лaФоЗЄн<D084>в^вмoEю3<D18E>@п<>tJї к{CyЁЬ|09<30>*йXЛ<58>E<EFBFBD>ЊЎѓiZ

BIN
public/emoji/pen.svg.br Normal file

Binary file not shown.

Binary file not shown.

View File

@ -0,0 +1 @@
L ┤ИфYVdы╬⌡┼gн╙5S╤К╒SИИ║шRlЦ÷ь┘BдlГC°Цо6шn╡ $╣8║$J0м,╫a╢цЦFP~F7ОGБГИbфbКщМ"╧2Р аЖWЪ╩S┌0▓Zс≥лП╒еС"╛ф╚Mx9} Ь║╤║и5сй║╫╫╫иШ!r ©н1Вz√?сQуPGCж ≈iмц┐ уЮ╔IAП%┌6|═ХЫ!+;ЭVEл▐нj─╓Ёz╧╨N╕ж╔~L╬"х╔1nJ╛КФ@░йп(=

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

BIN
public/emoji/vhs.svg.br Normal file

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

BIN
public/favicon.ico.br Normal file

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Some files were not shown because too many files have changed in this diff Show More