|
||
---|---|---|
.. | ||
database | ||
src | ||
.env.example | ||
Cargo.lock | ||
Cargo.toml | ||
docker-compose.dev.yml | ||
Makefile.toml | ||
Migra.toml | ||
README.md |
Web example
Simple rest api example with hyper, bb8, postgres
Deps
For this example you need to install docker with docker-compose, nightly rust. Follow the instructions on the official sites.
Running
Move to the example directory
cd examples/web
Run configuration for docker-compose
docker-compose -f docker-compose.dev.yml up
Or run postgres server manually.
Then copy .env.example
to .env
and edit if you needed.
cp .env.example .env
Now you can run server
cargo run --features dev
Or if you have a cargo make
cargo make dev