Skip to content
This repository has been archived by the owner on Apr 24, 2024. It is now read-only.

Latest commit

 

History

History
77 lines (50 loc) · 2.25 KB

01setup.md

File metadata and controls

77 lines (50 loc) · 2.25 KB

Setup

All steps mentioned here have to be executed in the backend/ folder.

Setup

  1. Rename .env.sample to .env and enter the data according to your setup.
  • DATABASE_URL is the Connection URI to your PostgreSQL database
  • BIND_ADDRESS_HOST defines the host on which the server will run on
  • BIND_ADDRESS_PORT defines the port on which the server will run on
  • AUTH_DISCOVERY_URI the .well-known endpoint of the auth server (see RFC 8414 for more detail)
  • AUTH_CLIENT_ID the client id the frontend should use to log in
  • RUST_LOG used to set the logging config for env_logger

To install an extension, a user needs to be a 'superuser',

The user 'permaplant' doesn't have the required permissions to create the 'postgis' extension.

Set it up using the postgres user.

Ensure that you grant the necessary permissions for the user to use Postgres.

One way to do this, is by using the following command:

sudo -u postgres psql
CREATE USER permaplant WITH CREATEDB PASSWORD 'permaplant';
ALTER USER permaplant WITH SUPERUSER;
  1. Install

To install dependencies.

make install
  1. migration

To update the database.

make migration
  1. build
make build
  1. Start Keycloak

You can do one of the following two steps, the first one being the simpler one, but with less configuration options.

  • To use the preconfigured Keycloak instance simply copy the newest version of .env.sample to .env
  • To use the local Keycloak variant follow the steps in Keycloak Setup
    You then also have to change following two env variables in .env
    • AUTH_DISCOVERY_URI=http://localhost:8081/realms/PermaplanT/.well-known/openid-configuration
    • AUTH_CLIENT_ID=PermaplanT
  1. run

To start the server

make run

Test server using Swagger

Go to http://localhost:8080/doc/api/swagger/ui/.
Now follow the steps described in the API documentation page.

You can find other ways to make requests by following How to obtain access tokens.