| Name | Modified | Size | Downloads / Week |
|---|---|---|---|
| Parent folder | |||
| README.md | 2019-07-26 | 9.9 kB | |
| Release 2019.7.26 source code.tar.gz | 2019-07-26 | 43.1 MB | |
| Release 2019.7.26 source code.zip | 2019-07-26 | 45.0 MB | |
| Release 2019.7.26.tar.gz | 2019-07-26 | 43.1 MB | |
| Release 2019.7.26.zip | 2019-07-26 | 45.0 MB | |
| Totals: 5 Items | 176.2 MB | 0 | |
Release notes
fix committe name
revert liquibase 3.7.0 -> 3.6.3 (issues with views, public schema)
Cloudformation S3 Bucket should have access logging configured
Dependency updates javamelody-core from 1.78.0 to 1.79.0 aws sdk from 1.11.596 to 1.11.599 lucene 8.1.1 -> 8.2.0 netty from 4.1.37.Final to 4.1.38.Final. xerces:xercesImpl 2.12.0 -> 2.12.0.SP02
Aws cloudformation template available https://oss.sonatype.org/content/repositories/releases/com/hack23/cia/cia-dist-cloudformation/2019.7.26/cia-dist-cloudformation-2019.7.26.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.7.26 -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 16.04,17.10,18.04
-
Installing database(postgres) and openjdk
$ sudo apt-get install openjdk-8-jdk postgresql pgadmin3
-
Installing Oracle JDK 9 on Ubuntu
First you need to add webupd8team Java PPA repository in your system and install Oracle Java 8 using following set of commands.
$ sudo add-apt-repository ppa:webupd8team/java
$ sudo apt-get update
$ sudo apt-get install oracle-java9-installer oracle-java8-installer oracle-java8-unlimited-jce-policy
- 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/9.6/main/postgresql.conf" set
max_prepared_transactions = 100
-
Modify postgres setting Edit file "/etc/postgresql/9.6/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.7.26.deb
-
Access the server at http://localhost:2323/cia/ .

