A simple club management app made with <3
 
 
 
 
 
Go to file
Zynh0722 321fe052e9 cull head 2023-11-22 23:56:53 -08:00
dist language unification 2023-11-05 06:47:04 -08:00
migrations add estimated_end to show data 2023-11-14 21:55:18 -08:00
src add dancer select 2023-11-17 14:37:56 -08:00
templates cull head 2023-11-22 23:56:53 -08:00
.gitignore add .DS_Store to gitignore 2023-11-14 15:52:27 -08:00
Cargo.lock BROKEN: Switching to dedicated handler task 2023-11-03 07:55:24 -07:00
Cargo.toml throttle updates 2023-11-06 17:54:10 -08:00
README.md update diesel install 2023-11-14 23:38:27 -08:00
build.rs base framework up and running 2023-09-21 10:44:53 -07:00
diesel.toml feat: shifts 2023-09-26 02:18:12 -07:00
docker-compose.yml adminer theme! 2023-11-15 14:29:49 -08:00
example.env feat: shifts 2023-09-26 02:18:12 -07:00
mprocs.yaml convert to proper tailwind 2023-11-04 02:28:38 -07:00
package-lock.json convert to proper tailwind 2023-11-04 02:28:38 -07:00
package.json convert to proper tailwind 2023-11-04 02:28:38 -07:00
tailwind.config.js convert to proper tailwind 2023-11-04 02:28:38 -07:00

README.md

clubmanager

Running

Run Database
docker-compose up

or

docker compose up

whichever works

Diesel Schema Setup
# install diesel cli
cargo install diesel_cli --no-default-features --features mysql

# run migrations
diesel migration run
Build Styles
npx tailwindcss -i ./templates/styles/main.css -o ./dist/main.css --watch
Run Web Server
cargo run
Reset database
docker compose down

or

docker-compose down

whichever works, then restart the database as above