2019-07-24 23:16:00 +02:00
2019-06-10 01:25:05 +02:00
2019-07-23 15:58:28 +02:00
2019-07-24 21:26:56 +02:00
2019-07-17 12:19:09 +02:00
2019-07-03 17:22:26 +02:00
2019-07-23 14:33:23 +02:00
2019-07-24 21:26:56 +02:00
2019-07-24 21:26:56 +02:00
2019-07-24 21:26:56 +02:00
2019-07-24 22:40:36 +02:00
.
2019-05-30 12:12:51 +02:00
2019-07-23 01:31:43 +02:00
2019-04-03 00:25:12 +02:00
.
2019-06-07 17:02:33 +02:00
2019-07-09 01:37:35 +02:00
2019-04-03 00:25:12 +02:00
2019-07-24 21:26:56 +02:00
2019-07-24 23:16:00 +02:00
2019-07-03 17:53:22 +02:00

gancio

a shared agenda for local communities

⚠️ WARNING ⚠️ Gancio is under heavy development, if something is not working as expected, it's expected :D Please be patient and open an issue!

Current live instances:

Installation

Install node
# source https://github.com/nodesource/distributions/blob/master/README.md
curl -sL https://deb.nodesource.com/setup_12.x | bash -
apt-get install -y nodejs
Install postgres
apt install postgresql
Create database
sudo -u postgres psql
postgres=# create database gancio;
postgres=# create user gancio with encrypted password 'gancio';
postgres=# grant all privileges on database gancio to gancio;
Install gancio
npm install --global gancio
Create a new user
adduser gancio
su gancio
Setup & test
gancio --help
gancio setup
gancio start

Hacking

# clone this repo
git clone https://git.lattuga.net/cisti/gancio.git
cd gancio

# install dependencies
yarn install

# testing with sqlite db
yarn dev

# build for production and launch server
yarn build
yarn start

Made with ❤️ by underscore hacklab

Description
No description provided
Readme 31 MiB
Languages
JavaScript 57.7%
Vue 36.8%
PHP 2.8%
Svelte 1.4%
Pug 0.6%
Other 0.6%