| 1 |
# MNW Server |
| 2 |
|
| 3 |
Rust web server for [makenot.work](https://makenot.work), a fair creator platform with 0% platform fees. |
| 4 |
|
| 5 |
Built with Axum, SQLx (PostgreSQL), and Askama templates. |
| 6 |
|
| 7 |
## Documentation |
| 8 |
|
| 9 |
- **Architecture:** `docs/architecture.md` |
| 10 |
- **Contributing:** `CONTRIBUTING.md` |
| 11 |
- **Deployment:** `deploy/deploy.sh` (run from this directory) |
| 12 |
- **Schema:** `docs/schema.md` |
| 13 |
- **Troubleshooting:** `docs/troubleshooting.md` |
| 14 |
|
| 15 |
## Quick start |
| 16 |
|
| 17 |
```sh |
| 18 |
cargo run # development server |
| 19 |
cargo test # run test suite |
| 20 |
cargo clippy # lint |
| 21 |
``` |
| 22 |
|
| 23 |
See `CONTRIBUTING.md` for coding patterns, macros, and conventions. |
| 24 |
|