2.7 KiB
2.7 KiB
NextNet to Hermes migration
Other Environment Variables
Below are existing environment variables that need to be migrated over from NextNet to Hermes, untouched:
IS_SIGNUP_ENABLED
->HERMES_SIGNUP_ENABLED
UNSAFE_ADMIN_SIGNUP
->HERMES_UNSAFE_ADMIN_SIGNUP_ENABLED
Below are new environment variables that may need to be set up:HERMES_FORCE_DISABLE_REFRESH_TOKEN_EXPIRY
: Disables refresh token expiry for Hermes. Instead of the singular token structure used by NextNet, there is now a refresh token and JWT token combination.HERMES_LOG_LEVEL
: Log level for Hermes & Hermes backends to run at.HERMES_DEVELOPMENT_MODE
: Development mode for Hermes, disabling security features.HERMES_LISTENING_ADDRESS
: Address to listen on for the API server. Example:0.0.0.0:8000
.HERMES_TRUSTED_HTTP_PROXIES
: List of trusted HTTP proxies separated by commas.
Database-Related Environment Variables
HERMES_DATABASE_BACKEND
: Can be eithersqlite
for the embedded SQLite-compliant database, orpostgresql
for PostgreSQL support.HERMES_SQLITE_FILEPATH
: Path for the SQLite database to use.HERMES_POSTGRES_DSN
: PostgreSQL DSN for Golang. An example value which should work with minimal changes for PostgreSQL databases ispostgres://username:password@localhost:5432/database_name
.
Migration steps
- Remove all old environment variables.
- Add these variables:
HERMES_MIGRATE_POSTGRES_DATABASE
->${POSTGRES_DB}
HERMES_DATABASE_BACKEND
->postgresql
HERMES_POSTGRES_DSN
->postgres://${POSTGRES_USERNAME}:${POSTGRES_PASSWORD}@nextnet-postgres:5432/${POSTGRES_DB}
DATABASE_URL
->postgresql://${POSTGRES_USERNAME}:${POSTGRES_PASSWORD}@nextnet-postgres:5432/${POSTGRES_DB}?schema=nextnet
HERMES_JWT_SECRET
-> Random data (recommended to usehead -c 500 /dev/random | sha512sum | cut -d " " -f 1
to seed the data)
- Switch the API docker image from
ghcr.io/imterah/nextnet:latest
toghcr.io/imterah/hermes-backend-migration:latest
- Change the exposed ports from
3000:3000
to3000:8000
. - Start the Docker compose stack.
- Go get the container logs, and make sure no errors get output to the console.
- Copy the backup as instructed in the log file.
- DO NOT RESTART THE CONTAINER IF SUCCESSFUL. YOU WILL LOSE ALL YOUR DATA. If the migration fails, follow the steps mentioned in the logs. You do not need to copy the DB backup if it failed to connect or read the database.
- If successful, remove the environment variable
HERMES_MIGRATE_POSTGRES_DATABASE
. - Switch the API docker image from
ghcr.io/imterah/hermes-backend-migration:latest
toghcr.io/imterah/hermes:latest
. - Start the backend.