Windshaft-cartodb/test/prepare_db.sh

17 lines
540 B
Bash
Raw Normal View History

2011-10-20 22:44:37 +08:00
#!/bin/sh
# this script prepare database and redis instance to run accpetance test
echo "preparing redis..."
echo "HSET rails:users:vizzuality id 1" | redis-cli -n 5
2011-10-21 00:52:11 +08:00
echo "HSET rails:users:vizzuality database_name cartodb_test_user_1_db" | redis-cli -n 5
2011-10-20 22:44:37 +08:00
echo "preparing postgres..."
2011-10-21 00:52:11 +08:00
dropdb -Upostgres -hlocalhost cartodb_test_user_1_db
createdb -Upostgres -hlocalhost -Ttemplate_postgis -Opostgres -EUTF8 cartodb_test_user_1_db
psql -Upostgres -hlocalhost cartodb_test_user_1_db < windshaft.test.sql
2011-10-20 22:44:37 +08:00
echo "ok, you can run test now"