mirror of
https://github.com/cgrates/cgrates.git
synced 2026-02-14 20:59:53 +05:00
10 lines
241 B
Bash
Executable File
10 lines
241 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 createuser -S -D -R -e cgrates
|
|
sudo -u postgres createdb -e -O cgrates cgrates
|