Skip to content

Fork of the working project for the Rust live bootcamp for me to learn

Notifications You must be signed in to change notification settings

luiscarlosjayk/live-bootcamp-project

 
 

Repository files navigation

Setup & Building

cargo install cargo-watch
cd app-service
cargo build
cd ..
cd auth-service
cargo build
cd ..

Run servers locally (Manually)

App service

cd app-service
cargo watch -q -c -w src/ -w assets/ -w templates/ -x run

visit http://localhost:8000

Auth service

cd auth-service
cargo watch -q -c -w src/ -w assets/ -x run

visit http://localhost:3000

Run servers locally (Docker)

docker compose build
docker compose up

visit http://localhost:8000 and http://localhost:3000

About

Fork of the working project for the Rust live bootcamp for me to learn

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Rust 74.6%
  • TypeScript 10.9%
  • JavaScript 7.6%
  • HTML 5.4%
  • Dockerfile 1.5%