mirror of
https://github.com/cgrates/cgrates.git
synced 2026-02-11 18:16:24 +05:00
11 lines
277 B
Bash
Executable File
11 lines
277 B
Bash
Executable File
#!/bin/bash
|
|
|
|
#
|
|
# 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
|