Skip to content
Snippets Groups Projects

Error handling

Merged Ghost User requested to merge error-handling into Development
3 files
+ 18
21
Compare changes
  • Side-by-side
  • Inline
Files
3
docker/init.sh 0 → 100755
+ 9
0
#!/bin/bash
psql -U postgres << EOF
create database ehasa;
\c ehasa;
create user ehasa;
alter user ehasa with encrypted password 'salasana';
grant all privileges on database ehasa to ehasa;
create extension "uuid-ossp";
EOF
\ No newline at end of file
Loading