2019-02-26 01:29:41 +01:00
|
|
|
# gancio
|
|
|
|
an event manager for radical communities
|
2019-03-20 15:18:30 +01:00
|
|
|
|
|
|
|
:warning: Gancio is under heavy development,
|
|
|
|
if something is not working as expected, it's expected :D
|
|
|
|
|
|
|
|
#### Install
|
2019-03-22 11:43:56 +01:00
|
|
|
We provide a docker way to run **gancio** but you can also manually install it.
|
2019-03-20 15:18:30 +01:00
|
|
|
```
|
|
|
|
git clone https://git.lattuga.net/lesion/gancio.git
|
|
|
|
cd gancio
|
2019-03-22 00:16:12 +01:00
|
|
|
|
|
|
|
# copy .env into .env.production and edit it
|
2019-03-20 15:18:30 +01:00
|
|
|
docker-compose up -d
|
|
|
|
```
|
|
|
|
|
|
|
|
#### Development
|
2019-02-26 01:30:12 +01:00
|
|
|
both backend (`/app`) and frontend(`/client`) are in this repo.
|
2019-02-26 01:29:41 +01:00
|
|
|
|
|
|
|
backend stack: node.js, express, sequelize.
|
|
|
|
frontend stack: vue, webpack, boostrap
|
|
|
|
|
|
|
|
```
|
2019-03-20 15:18:30 +01:00
|
|
|
git clone https://git.lattuga.net/lesion/gancio.git
|
2019-02-26 01:29:41 +01:00
|
|
|
cd gancio
|
|
|
|
# install back-end dependencies
|
|
|
|
yarn
|
|
|
|
# run back-end in development mode
|
|
|
|
yarn dev
|
|
|
|
|
|
|
|
cd client
|
|
|
|
# install front-end dependencies
|
|
|
|
yarn
|
|
|
|
# run front-end in development mode
|
|
|
|
yarn dev
|
2019-03-22 11:43:56 +01:00
|
|
|
```
|
|
|
|
|
|
|
|
|
|
|
|
#### Migrate / Backup
|
|
|
|
- db
|
|
|
|
- images
|