No description
Find a file
2019-03-22 00:20:47 +01:00
app minor 2019-03-22 00:20:47 +01:00
client fix #17 fix #36 remove notification, rss fix&more 2019-03-21 22:20:30 +01:00
locales fix dockerization 2019-03-22 00:16:12 +01:00
uploads/thumb fix #30, thumbnail 2019-03-20 00:50:43 +01:00
.dockerignore stream of consciousness 2019-03-07 14:59:28 +01:00
.editorconfig first commit backend 2019-02-26 00:02:42 +01:00
.env fix dockerization 2019-03-22 00:16:12 +01:00
.eslintrc.js admin settings fix #12, fix #13 image in mastodon 2019-03-12 01:16:52 +01:00
.gitignore fix dockerization 2019-03-22 00:16:12 +01:00
db.sqlite add dev db 2019-02-26 01:25:03 +01:00
docker-compose.yml fix dockerization 2019-03-22 00:16:12 +01:00
Dockerfile mail notification 2019-03-11 00:20:37 +01:00
init.sql fix dockerization 2019-03-22 00:16:12 +01:00
package.json other minor fix 2019-03-12 23:48:43 +01:00
pm2.json pm2 / cron worker to send reminder 2019-03-10 01:01:23 +01:00
README.md fix dockerization 2019-03-22 00:16:12 +01:00

gancio

an event manager for radical communities

⚠️ Gancio is under heavy development, if something is not working as expected, it's expected :D

Install

We provide a docker way to run gancio.

git clone https://git.lattuga.net/lesion/gancio.git
cd gancio 

# copy .env into .env.production and edit it
docker-compose up -d

Development

both backend (/app) and frontend(/client) are in this repo.

backend stack: node.js, express, sequelize.
frontend stack: vue, webpack, boostrap

git clone https://git.lattuga.net/lesion/gancio.git
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