Dev Env - v22-appfactory/appfactory-wiki GitHub Wiki
TBD
Setup of environment variables can provide login and user shortcuts that will automatically login the front-end and automatically authenticate sessions on the server. These environment variables are setup on the machine where the front and server applications are running.
Setting the following environment variables will automatically login the user and will be the defaults in the login
screen when selecting Sign In
export VUE_APP_MODE=DEV
export VUE_APP_EMAIL=[email protected]
export VUE_APP_PSWD=password
Setting the following environment variables are set on the server will by-pass the session check and will automatically
set the session user based on the user ID provided.
export REST_APP_MODE=DEV
export REST_APP_USERID=3575
TBD
export POSTGRES_HOST=localhost
export POSTGRES_USER=appuser
export POSTGRES_PSWD=****
export POSTGRES_NAME=appfactory
export POSTGRES_OWNER=appowner
export POSTGRES_OWNER_PSWD=********
TBD
export FLYWAY_HOME=/Applications/flyway-5.2.4