diff --git a/.gitea/workflows/setup_native.yml b/.gitea/workflows/setup_native.yml index 45bbe9a41..9ddd1834b 100644 --- a/.gitea/workflows/setup_native.yml +++ b/.gitea/workflows/setup_native.yml @@ -33,10 +33,9 @@ jobs: PG_PASSWORD: ${{ secrets.PG_PASSWORD }} DB_SERVER: ${{ vars.DB_SERVER }} DB_PORT: ${{ vars.DB_PORT }} - - name: Activate virtual environment and install dependencies run: make install - + - name: Generate Config run: make gen_config diff --git a/setup/init_config.sh b/setup/init_config.sh index 2500372d0..80a4bc5b0 100755 --- a/setup/init_config.sh +++ b/setup/init_config.sh @@ -195,6 +195,8 @@ Generate_Config_Native(){ # Load environment variables from .env file if [ -f .env ]; then export $(grep -v '^#' .env | xargs) + Show 2 "Environment variables loaded:" + printenv | sort else Show 1 ".env file not found!" exit 1