Nicole Tietz-Sokolskaya
e0653e4bdd
This is a big dump of a lot of code, mostly making it so that: - we have a key-value store - we can create/save/load projects and documents - there's a sidebar layout with some placeholders we may or may not need - other stuff I forgot Reviewed-on: #1
24 lines
448 B
Makefile
24 lines
448 B
Makefile
|
|
run:
|
|
SECURE_SESSIONS=false RUST_LOG=debug cargo run -- --reload-templates
|
|
|
|
run-watch:
|
|
SECURE_SESSIONS=false RUST_LOG=debug cargo watch --why -x 'run -- --reload-templates'
|
|
|
|
run-release:
|
|
SECURE_SESSIONS=false RUST_LOG=info cargo run --release
|
|
|
|
css-watch:
|
|
npm run css-watch
|
|
|
|
typescript:
|
|
npm run build
|
|
|
|
typescript-watch:
|
|
npm run build-watch
|
|
|
|
migrate:
|
|
sea-orm-cli migrate
|
|
|
|
entities:
|
|
sea-orm-cli generate entity -o src/entity --with-serde both
|