simple-auth/README.md
2022-09-08 09:50:04 +00:00

21 lines
291 B
Markdown

# simple-auth
A little web server providing JWT token for auth auser.
**NOTE**: for now, the server is listening on port **9000**. Change it, in the src if needed.
## Build
```bash
cargo build --release
# run the server
./target/release/simple-auth
```
## Test
```bash
cargo test
```