| Name | Modified | Size | Downloads / Week |
|---|---|---|---|
| Parent folder | |||
| README.md | 2019-09-14 | 11.0 kB | |
| Relase 2019.9.14 source code.tar.gz | 2019-09-14 | 43.1 MB | |
| Relase 2019.9.14 source code.zip | 2019-09-14 | 45.0 MB | |
| Relase 2019.9.14.tar.gz | 2019-09-14 | 43.1 MB | |
| Relase 2019.9.14.zip | 2019-09-14 | 45.0 MB | |
| Totals: 5 Items | 176.2 MB | 0 | |
Release notes
cleanup
Cloudformation No changes
Dependency updates spring-security 5.2.0.M4 -> 5.2.0.RC1 spring 5.2.0.RC1 -> 5.2.0.RC2 ant from 1.10.6 to 1.10.7 cia.project.versions.aws from 1.11.613 to 1.11.631 cia.project.versions.bouncycastle from 1.62 to 1.63 cia.project.versions.drools from 7.25.0.Final to 7.26.0.Final cia.project.versions.hibernate.search from 6.0.0.Alpha8 to 6.0.0.Alpha9 cia.project.versions.javers from 5.6.3 to 5.7.2 cia.project.versions.netty from 4.1.39.Final to 4.1.41.Final cia.project.versions.vaadin from 8.9.0.beta3 to 8.9.0 classgraph from 4.8.44 to 4.8.47 ehcache from 3.8.0 to 3.8.1 guava from 28.0-jre to 28.1-jre liquibase-core from 3.6.3 to 3.8.0 openpdf from 1.3.3 to 1.3.8 plantuml from 1.2019.8 to 1.2019.9 logback-awslogs-appender 1.1.1 -> 1.2.0 com.fasterxml.jackson.core 2.10.0.pr1 -> 2.10.0.pr2 com.openpojo:openpojo 0.8.12 -> 0.8.13 com.squareup.okio:okio 2.3.0 -> 2.4.0 hmtlunit 2.35.0 -> 2.36.0 html-unitdriver 2.35.1 -> 2.36.0 mockito 3.0.5 -> 3.0.7 nl.basjes.parse.useragent:yauaa 5.11 -> 5.12 org.apache.activemq 2.9.0 -> 2.10.0 org.apache.commons:commons-compress 1.18 -> 1.19 org.apache.commons:commons-text 1.7 -> 1.8 org.apache.httpcomponents:httpclient .4.5.9 -> 4.5.10 org.apache.httpcomponents:httpcore 4.4.11 -> 4.4.12 org.jboss.narayana.jta 5.9.7.Final -> 5.9.8.Final org.postgresql:postgresql 42.2.6 -> 42.2.8 protobuf 3.9.1 -> 3.10.0-rc-1 webdrivermanager 3.6.2 -> 3.7.0
Aws cloudformation template available https://oss.sonatype.org/content/repositories/releases/com/hack23/cia/cia-dist-cloudformation/2019.9.14/cia-dist-cloudformation-2019.9.14.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.9.14 -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.9.14.deb
-
Access the server at http://localhost:2323/cia/ .

