1 unstable release
0.1.0 | Jul 8, 2020 |
---|
#133 in #microservices
23KB
223 lines
HQ-Core
A Rusty RESTful Postgres Microservice
THIS IS A WORK IN PROGRESS
If you've come across this repo, feel free to reach out and ask about the project. However, it is not currently ready for use. This message will be removed once we are ready for user testing and review.
How to Run
- Create a postgresql server with an empty database on a linux box, name the table hqcore and create a user that is allowed to have remote access to the table.
- Add your connection info to the env folder of HQ-Core:
cd HQ-CORE && echo DATABASE_URL=postgres://postgres_username:postgres_passwd@hostname:5432/hqcore > .env
- Get your dependencies:
cargo build
- Setup the db with diesel:
diesel setup
- Run any migrations (if changes were made):
diesel migration run
- Server should now be available on port 8080 over http
Dockerize It
Tutorial Here
You will want to use rust-musl-builder to create a lightweight image with no dependencies. Once the image is built, run it like so:
docker run --env-file=./path/to/.env --rm --name hq-core -p 8080:8080 hq-core
Dependencies
~27–38MB
~664K SLoC