A simple club management app made with <3
 
 
 
 
 
Go to file
Zynh0722 b03ea80e8e relocate newdrink 2023-11-14 21:54:43 -08:00
dist language unification 2023-11-05 06:47:04 -08:00
migrations formatting and new tables 2023-11-04 02:56:05 -07:00
src relocate newdrink 2023-11-14 21:54:43 -08:00
templates dancer management 2023-11-06 11:14:04 -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 README.md 2023-11-04 02:59:33 -07: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 feat: shifts 2023-09-26 02:18:12 -07: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

# 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