diff options
author | Santo Cariotti <santo@dcariotti.me> | 2024-09-06 16:31:45 +0200 |
---|---|---|
committer | Santo Cariotti <santo@dcariotti.me> | 2024-09-06 16:33:09 +0200 |
commit | a513bc027483bdba6c31ffe29df227f0d26451ad (patch) | |
tree | 01193905b419f051c111a7c29c09767b1269d539 | |
parent | b8b0f661e6857731215798c6759e0ade9b3099f6 (diff) |
Add readme
-rw-r--r-- | README.md | 87 |
1 files changed, 87 insertions, 0 deletions
diff --git a/README.md b/README.md new file mode 100644 index 0000000..81041bd --- /dev/null +++ b/README.md @@ -0,0 +1,87 @@ +# CAS4 backend API + +This repo refers to a GraphQL API written in Rust used for a project for the +[Context Aware System](https://www.unibo.it/en/study/phd-professional-masters-specialisation-schools-and-other-programmes/course-unit-catalogue/course-unit/2023/479036) +class at the [University of Bologna](https://unibo.it). + +--- + +## Development + +You need: +- Rust [`>=1.81.0`](https://github.com/rust-lang/rust/releases/tag/1.81.0). +- `libssl-dev` in Debian-based environment. `sudo apt install libssl-dev`. +- [PostgreSQL](https://www.postgresql.org/). +- [PostGIS](https://postgis.net/) extension. + +Now you set up some env variables: + +- `RUST_LOG`: used by the logger. + +- `DATABASE_URL`: it can be in a DSN format such as `host=localhost + user=postgres password=password dbname=cas4 port=5432` or in a URL format such + as `postgres://postgres:password@localhost:5432/cas4`. + +- `JWT_SECRET`: this _must_ be secret because it is used to encrypt/decrypt JWT + tokens. + +- `ALLOWED_HOST`: refers to the online host of the service (eg: `0.0.0.0:8000`). + +- `EXPO_ACCESS_TOKEN`: used by the [Expo](https://expo.dev) API access. + +After that you must copy the `schema/init.sql` file into the database. + +Now just run the app + +``` +cargo run +``` + +## Deploy + +Fortunately the deployment is automatized by the GitHub Action `cd.yml` which +pushes the latest release version to a [GHCR.io package](https://github.com/cas-4/backend/pkgs/container/backend). + +A new version is released using + +``` +./scripts/release X.Y.Z +``` + +Now you just exec + +``` +docker pull ghcr.io/cas-4/backend:latest +``` + +Or you can build a new image + +``` +docker build -t cas:latest . +docker run \ + -e RUST_LOG=... \ + -e DATABASE_URL=... \ + -e JWT_SECRET=... \ + -e ALLOWED_HOST=... \ + -e EXPO_ACCESS_TOKEN ... \ + cas:latest +``` + +Or the Docker compose which puts up also the PostgreSQL locally. + +``` +docker compose up +``` + +### Kubernetes + +If you do not want to use Docker or Docker compose directly, you can use a +Kubernetes cluster like [MiniKube](https://minikube.sigs.k8s.io/docs/). + +``` +./scripts/k8s (apply|delete) +``` + +## Documentation + +An always updated documentation is available at [this link](https://cas-4.github.io/backend/cas/index.html). |