No description
app | ||
client | ||
locales | ||
uploads/thumb | ||
.dockerignore | ||
.editorconfig | ||
.env | ||
.eslintrc.js | ||
.gitignore | ||
db.sqlite | ||
docker-compose.yml | ||
Dockerfile | ||
init.sql | ||
package.json | ||
pm2.json | ||
README.md |
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