3.6 KiB
3.6 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 variables
HERMES_MIGRATE_POSTGRES_DATABASE
andDATABASE_URL
. - Switch the API docker image from
ghcr.io/imterah/hermes-backend-migration:latest
toghcr.io/imterah/hermes:latest
. - Start the backend.
Failed Migration / Manual Restoration Steps
- Get to step 4 in the ordinary migration setps.
- Add the
entrypoint
option in the API compose section, and set it to/bin/bash
- Add the
command
option in the API compose section, and set it to"-c 'sleep 10000'"
- Get a shell in the container (likely named
nextnet-api
):docker exec -it nextnet-api /bin/bash
- Copy the base64 section (excluding the
BEGIN
andEND
portions) of the backup, and run the following command to begin the transfer:cat >> /tmp/db.json.gz.b64 << EOF
- Paste in the base64 data, and then press enter, type
EOF
, and then press enter again. This should return you to the shell prompt. - Decode the base64 backup:
cat /tmp/db.json.gz.b64 | base64 -d > /tmp/db.json.gz
- Run the migration script:
./entrypoint.sh
- When done, remove the
entrypoint
andcommand
sections, and then jump to step 9 in the ordinary migration steps.