mirror of https://gitlab.com/ecentrics/concordia
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
38 lines
556 B
38 lines
556 B
4 years ago
|
# Concordia
|
||
|
> A distributed forum using Blockchain, supporting direct democratic voting
|
||
|
|
||
|
## Setup
|
||
|
|
||
|
```shell script
|
||
|
cd apella
|
||
|
yarn
|
||
|
```
|
||
|
|
||
|
## Compile contracts
|
||
|
|
||
|
```shell script
|
||
|
cd packages/apella-contracts
|
||
|
yarn compile
|
||
|
```
|
||
|
|
||
|
## Run app
|
||
|
|
||
|
```shell script
|
||
|
cd packages/apella-app
|
||
|
yarn start
|
||
|
```
|
||
|
|
||
|
## Build app
|
||
|
|
||
|
```shell script
|
||
|
cd packages/apella-app
|
||
|
yarn build
|
||
|
```
|
||
|
|
||
|
## Using Docker images
|
||
|
|
||
|
This project provides docker images for a number of services required to setup Concordia, as well as for Concordia
|
||
|
itself.
|
||
|
|
||
|
Check out the README.md in the `./docker` directory
|