Skip to content

mkuzmentsov/cingulata

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Cingulata - UI

Sinker's Web Interface.

[![Build Status](https://travis-ci.org/BattleBeaver/cingulata.svg?branch=master)](https://travis-ci.org/BattleBeaver/cingulata) [![Codacy Badge](https://api.codacy.com/project/badge/grade/0a58a39185b94db49c0c9bdb8017c977)](https://www.codacy.com/app/kuzmentsov/cingulata)

Test Servers

Main:

http://demo.cingulata.org http://www.cingulata.org

Admin pane:

http://admin.cingulata.org

Installing on local machine

Java 8, Scala 2.11, sbt 0.13 - required

cd into root directory and type :

sbt run
in console.

Apache2 Configuration Sample

Install proxy_http with command:

a2enmod proxy_http

Add this line to etc/apache2/apache2.conf

LoadModule proxy_module modules/mod_proxy.so

Insert nodes definitions:

<VirtualHost *:80/>
  ProxyPreserveHost On
  ServerName admin.cingulata.org
  ProxyPass  /excluded !
  ProxyPass / http://127.0.0.1:9000/admin/categories
  ProxyPassReverse / http://127.0.0.1:9000/categories
</VirtualHost/>
<VirtualHost *:80/>
  ProxyPreserveHost On
  ServerName demo.cingulata.org
  ProxyPass  /excluded !
  ProxyPass / http://127.0.0.1:9000/
  ProxyPassReverse / http://127.0.0.1:9000/
</VirtualHost/>

Running with local Mongo DB installed

activator run -Dconfig.resource=dev.conf