leptos for frontend Go for backend this project exists only for learning 2 tecnologies at the same time
- [X] Dockerize backend and frontend
- [X] make the actual thing work somewhat
- [X] themes and proper styling
- [X] make it so that the client does not get redirected to the backend when trying to open document
start the backend with by goind to the backend dir and running
go run .then navigate to the frontend directory and run
trunk servemake sure you have trunk installed
run the following command in the root of the project
docker-compose up --buildgo to the frontend directory and run these commands
docker build -t leptosfront:1.0 .
docker run -p 8080:8080 leptosfront:1.0go to the backend directory and run these commands
docker build -t goback:1.0 .
docker run -p 3000:3000 goback:1.0