mirror of
https://framagit.org/les/gancio.git
synced 2025-01-31 16:42:22 +01:00
26 lines
456 B
Markdown
26 lines
456 B
Markdown
|
# gancio
|
||
|
an event manager for radical communities
|
||
|
[WIP]
|
||
|
|
||
|
# dev
|
||
|
both backend (`/app`) and frontend(`/client) are in this repo.
|
||
|
|
||
|
backend stack: node.js, express, sequelize.
|
||
|
frontend stack: vue, webpack, boostrap
|
||
|
|
||
|
```
|
||
|
git clone https://github.com/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
|
||
|
```
|
||
|
|