| Name | Modified | Size | Downloads / Week |
|---|---|---|---|
| Parent folder | |||
| README.md | 2019-12-21 | 10.6 kB | |
| Release 2019.12.21 source code.tar.gz | 2019-12-21 | 43.1 MB | |
| Release 2019.12.21 source code.zip | 2019-12-21 | 45.0 MB | |
| Release 2019.12.21.tar.gz | 2019-12-21 | 43.1 MB | |
| Release 2019.12.21.zip | 2019-12-21 | 45.0 MB | |
| Totals: 5 Items | 176.2 MB | 0 | |
Release notes
Cloudformation
Dependency updates spring 5.2.1.RELEASE -> 5.2.2.RELEASE aws-java 1.11.683 -> 1.11.698 aspectj 1.9.4 -> 1.9.5 javars 5.8.5 -> 5.8.7 drools 7.30.0.Final -> 7.31.0.Final hibernate 5.4.9 -> 5.4.10 hibernate-search 6.0.0.Beta2 -> 6.0.0.Beta3 vaadin 8.9.3 -> 8.10.0.alpha1 netty 4.1.43.Final -> 4.1.44.Final postgresql-jdbc 42.2.8 -> 42.2.9 bytebuddy 1.10.3 -> 1.10.6 lucene 8.3.0 -> 8.3.1 narayana 5.10.0 -> 5.10.1 liquibase 3.8.2 -> 3.8.4
Aws cloudformation template available https://oss.sonatype.org/content/repositories/releases/com/hack23/cia/cia-dist-cloudformation/2019.12.21/cia-dist-cloudformation-2019.12.21.template.
Demo https://www.hack23.com/cia/
Still prototype, live demo running at https:/www.hack23.com/cia/.
Example Screenshots
Resources
Project documentation https://hack23.github.io/cia/
Github source code location https://github.com/Hack23/cia
Build server, jenkins https://www.hack23.com/jenkins/
QA report, sonarqube https://www.hack23.com/sonar/
Repository manager, nexus https://www.hack23.com/nexus/
Running docker image
Docker repository : https://hub.docker.com/r/hack23/cia/
-
docker run hack23/cia:2019.12.21 -p 28443:8443
-
Access server at https://localhost:28443/cia/ , register new user to get admin access
Installing Debian/Ubuntu package
Currently only build a debian package, works with debian and ubuntu 18.04+
-
Installing database(postgres) and openjdk
$ sudo apt-get install openjdk-11-jdk postgresql-11 pgadmin3
-
Create empty database
Below description set the default username/password and database name used for development, recommend using custom credentials and update the configuration at /opt/cia/webapps/cia/WEB-INF/database.properties to define your own username/password and database name.
$ sudo su - postgres
$ psql
postgres=# CREATE USER eris WITH password 'discord';
postgres=# CREATE DATABASE cia_dev;
postgres=# GRANT ALL PRIVILEGES ON DATABASE cia_dev to eris;
- Modify postgres setting, enable prepared transactions
Edit file "/etc/postgresql/11/main/postgresql.conf" set
max_prepared_transactions = 100
-
Modify postgres setting Edit file "/etc/postgresql/11/main/pg_hba.conf" add line
host all all ::1/128 md5
-
Restart postgres
$ service postgresql restart
-
Get cia debian package and
-
Install debian package
$ sudo dpkg -i cia-dist-deb-2019.12.21.deb
-
Access the server at http://localhost:2323/cia/ .

