Strolch is a parameterized framework for use on servers and IoT
Go to file
Robert von Burg 0fbd156929 [New] Added convenience method Locator.newLocatorBuilder(String...) 2014-08-21 17:52:00 +02:00
src [New] Added convenience method Locator.newLocatorBuilder(String...) 2014-08-21 17:52:00 +02:00
.gitignore Initial Commit 2013-10-23 19:59:32 +02:00
LICENSE [Project] Changed all licence references to Apache License 2.0 2013-12-15 13:10:27 +01:00
README.md [Minor] documenting how to run tests by adding user for postgresql 2014-06-13 18:12:35 +02:00
pom.xml [Project] added resource filtering for componentVersion.properties 2014-08-13 23:39:05 +02:00

README.md

li.strolch.service

Build Status

Service API for Strolch

Running tests

  • Install PostgreSQL and create the following users: create user cacheduser with password 'test'; create database cacheduserdb; GRANT ALL PRIVILEGES ON DATABASE cacheduserdb to cacheduser; GRANT CONNECT ON DATABASE cacheduserdb TO cacheduser;

create user transactionaluser with password 'test'; create database transactionaluserdb; GRANT ALL PRIVILEGES ON DATABASE transactionaluserdb to transactionaluser; GRANT CONNECT ON DATABASE transactionaluserdb TO transactionaluser;

You can revoke the privileges with the following:

revoke ALL PRIVILEGES ON DATABASE cacheduserdb from cacheduser; drop user cacheduser; drop database cacheduserdb;

revoke ALL PRIVILEGES ON DATABASE transactionaluserdb from transactionaluser; drop user transactionaluser; drop database transactionaluserdb;