2
0
mirror of https://github.com/offen/website.git synced 2024-10-18 12:10:25 +02:00
website/README.md

45 lines
1.8 KiB
Markdown
Raw Normal View History

2019-04-10 16:58:26 +02:00
# offen
[![CircleCI](https://circleci.com/gh/offen/offen/tree/master.svg?style=svg)](https://circleci.com/gh/offen/offen/tree/master)
2019-04-26 04:19:47 +02:00
[![Pivotal Tracker](https://img.shields.io/static/v1.svg?label=Project+Planning&message=Pivotal+Tracker&color=informational)](https://www.pivotaltracker.com/n/projects/2334535)
2019-06-23 16:52:34 +02:00
[![Patreon](https://img.shields.io/static/v1.svg?label=patreon&message=donate&color=e85b46)](https://www.patreon.com/offen)
2019-04-26 04:19:47 +02:00
2019-04-10 18:17:24 +02:00
> The offen analytics software
2019-05-25 17:34:09 +02:00
This repository contains all source code needed to build and run __offen__, both on the server as well as on the client. See each of the READMEs in the subdirectories for instructions on how to work on that particular area of the application.
2019-04-10 18:17:24 +02:00
---
2019-04-26 04:19:47 +02:00
Development of __offen__ has just started, so instructions are rare and things will stay highly volatile for quite some while. Also __do not use the software in its current state__ as it is still missing crucial pieces in protecting the data end to end.
Guidelines for running and developing the Software will be added when it makes sense to do so.
2019-04-10 18:17:24 +02:00
2019-04-26 04:19:47 +02:00
Project planning and issue tracking is done using [Pivotal Tracker](https://www.pivotaltracker.com/n/projects/2334535), but feel free to open a GitHub issue if you have a question or found a bug.
2019-04-10 18:17:24 +02:00
2019-04-19 18:56:24 +02:00
### Developing the application
The development setup requires `docker` and `docker-compose` to be installed.
2019-04-26 04:08:17 +02:00
After cloning the repository, you can build the containers and install dependencies using:
```sh
$ make setup
```
Next, create a local encryption key for the `kms` service and seed the database for the `server` application:
```sh
$ make bootstrap
2019-04-26 04:08:17 +02:00
```
You can test your setup by starting the application:
```sh
2019-04-26 04:08:17 +02:00
$ docker-compose up
```
2019-09-05 14:02:01 +02:00
which should enable you to access <http://localhost:8080/auditorium/> and use the `auditorium`
2019-04-26 04:08:17 +02:00
2019-04-10 18:17:24 +02:00
### License
2019-05-02 04:34:00 +02:00
MIT © [offen](https://www.offen.dev)