init commit

This commit is contained in:
Nicholas Orlowsky 2024-05-15 22:12:14 +02:00
commit edc0dd01e8
Signed by: nickorlow
GPG key ID: 838827D8C4611687
20 changed files with 2920 additions and 0 deletions

10
makefile Normal file
View file

@ -0,0 +1,10 @@
.PHONY: run
run:
RUST_LOG=debug cargo run
docker-build:
docker build . -t smc-website:dev
docker-run: docker-build
docker run -p 8085:80 smc-website:dev