Build fork of Gancio
Find a file
2019-07-11 22:29:18 +02:00
.vscode update kanban 2019-06-11 18:26:06 +02:00
assets locale via config 2019-06-10 01:25:05 +02:00
components minor 2019-07-11 22:29:18 +02:00
config improve installation/documentation 2019-07-03 16:58:24 +02:00
layouts minor 2019-07-03 17:22:26 +02:00
locales fix subject confirmation email 2019-07-09 01:37:35 +02:00
pages minor 2019-07-11 22:29:18 +02:00
plugins minor 2019-07-11 22:29:18 +02:00
server minor 2019-07-11 22:29:18 +02:00
static . 2019-05-30 12:12:51 +02:00
store fix subject confirmation email 2019-07-09 01:37:35 +02:00
views/feed clipboard / add date to rss title 2019-07-05 01:38:31 +02:00
.editorconfig start with nuxt 2019-04-03 00:25:12 +02:00
.eslintrc.js . 2019-06-07 17:02:33 +02:00
.gitignore fix subject confirmation email 2019-07-09 01:37:35 +02:00
.prettierrc start with nuxt 2019-04-03 00:25:12 +02:00
.sequelizerc better config / install from cli / allow_registration 2019-06-21 23:52:18 +02:00
nuxt.config.js v0.9.17 2019-07-03 16:33:03 +02:00
package.json minor 2019-07-11 22:29:18 +02:00
README.md minor 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