about summary refs log tree commit diff
path: root/initENV.sh
blob: 91d99986cbb103b5534666f7527a77c980faa6b1 (plain)
1
2
3
4
5
6
7
8
9
#!/usr/bin/env bash

echo "Initialiazing the environment variables..."
export DBURL="postgresql.docker.localhost"
export DBUSER="postgres"
export DBPASSWD=""
export DBPORT="5432"
export DBPROJECTNAME="postgres"
echo "Done"