Some more fixes

This commit is contained in:
Griatch 2019-03-20 00:24:23 +01:00
parent 03b711fcfc
commit d459a9b0da

View file

@ -16,12 +16,13 @@ env:
before_install:
# - psql -U postgres -c "GRANT ALL PRIVILEGES ON DATABASE evennia TO evennia;"
- psql -U postgres -c "CREATE DATABASE evennia;"
- psql -U postgres -c "CREATE USER evennia WITH PASSWORD 'password';"
- psql -U postgres -c "GRANT ALL PRIVILEGES ON DATABASE evennia TO evennia;"
- psql -U postgres -c "ALTER USER evennia CREATEDB;"
- mysql -u root -e "CREATE DATABASE evennia CHARACTER SET utf8;"
- mysql -u root -e "CREATE USER 'evennia'@'localhost' IDENTIFIED BY 'password';"
- mysql -u root -e "GRANT ALL ON evennia.* TO 'evennia'@'localhost' IDENTIFIED BY 'password';"
- mysql -u root -e "GRANT ALL ON *.* TO 'evennia'@'localhost' IDENTIFIED BY 'password';"
install:
- pip install psycopg2-binary