Files
cgrates/data/docker/integration/scripts/postgres/create_db_with_users.sh
2022-03-11 16:34:31 +01:00

10 lines
265 B
Bash
Executable File

#
# Sample db and users creation. Replace here with your own details
#
sudo -u postgres dropdb -e cgrates
sudo -u postgres dropuser -e cgrates
sudo -u postgres psql -c "CREATE USER cgrates password 'CGRateS.org';"
sudo -u postgres createdb -e -O cgrates cgrates