gancio/README.md

49 lines
795 B
Markdown
Raw Normal View History

2019-05-30 12:04:14 +02:00
## gancio
### event manager for radical communities
2019-04-02 23:23:45 +02:00
2019-05-30 12:04:14 +02:00
> :warning: Gancio is under heavy development,
> if something is not working as expected, it's expected :D
2019-04-02 23:23:45 +02:00
2019-05-30 12:04:14 +02:00
## Install
2019-06-08 13:18:47 +02:00
You will need `npm` or `yarn` installed in your system.
2019-04-02 23:23:45 +02:00
``` bash
2019-06-08 13:18:47 +02:00
# clone this repo
git clone https://git.lattuga.net/cisti/gancio.git
cd gancio
2019-04-02 23:23:45 +02:00
# install dependencies
2019-06-08 13:18:47 +02:00
yarn install
# edit configuration
cp config.example.js config.js
# - migrate/create test sqlite db
yarn migrate:dev
# testing with sqlite db
yarn dev
# - migrate/create production db
yarn migrate
2019-04-02 23:23:45 +02:00
# build for production and launch server
2019-06-08 13:18:47 +02:00
yarn build
yarn start
2019-04-02 23:23:45 +02:00
```
2019-05-30 12:04:14 +02:00
##### nginx setup
https://nuxtjs.org/faq/nginx-proxy
2019-04-02 23:23:45 +02:00
For detailed explanation on how things work, checkout [Nuxt.js docs](https://nuxtjs.org).
2019-05-30 12:04:14 +02:00
## Hacking
``` bash
$ yarn dev
2019-06-08 13:18:47 +02:00
```