This is a Markdown note-taking app, with it's back-end written in Rust. It's part of the Coding Challenges
Run cargo run
at the project's root folder. Optionally, create an .env
file with this values:
# .env
PORT_NUMBER= 3000
DATABASE_URL= YOUR_DATABASE_URL
FRONT_END_URL= YOUR_FRONT_END_URL # This one I added for CORS
OR
Use docker-compose, which compiles the app and builds up a PostgreSQL DB if you want to skip the .env setup but remember to run docker-compose up --build
if you have changes (I didn't set up hot reload).
- Rust (with Axum)
- PostgreSQL
- Svelte (in a separate repo)