16 lines
270 B
Bash
Executable File
16 lines
270 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# needed for some tests
|
|
export LC_ALL=C.UTF-8
|
|
export LANG=C.UTF-8
|
|
|
|
export PGUSER="postgres"
|
|
export PGPORT=5432
|
|
export PGHOST="localhost"
|
|
|
|
export OPENSSL_CONF=/etc/ssl/
|
|
|
|
python -m venv vbvvenv
|
|
source vbvvenv/bin/activate
|
|
export PATH="$PWD/vbvvenv/bin:$PATH"
|