Strolch is a parameterized framework for use on servers and IoT
Go to file
Robert von Burg 2033c6b942 [Major] Refactored StrolchConfiguration.xml to use environments
Now the agent requires an environment parameter to start, and the
configuration of that environment is used to load different sections of
the configuration file
2014-08-13 16:06:23 +02:00
src [Major] Refactored StrolchConfiguration.xml to use environments 2014-08-13 16:06:23 +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] fixed urls of projects 2014-03-14 14:38:10 +01: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;