Build fork of Gancio
Find a file
2019-07-27 13:04:06 +02:00
.vscode start with user favicon/locale personalization 2019-07-24 11:49:02 +02:00
assets locale via config 2019-06-10 01:25:05 +02:00
components split admin/users component, ref #28 2019-07-25 12:37:50 +02:00
config user locale 2019-07-26 23:51:32 +02:00
docker fix #26, too big image 2019-07-17 12:19:09 +02:00
docs update docs 2019-07-27 13:04:06 +02:00
layouts minor 2019-07-03 17:22:26 +02:00
locales minor 2019-07-26 23:52:51 +02:00
middleware user locale, favicon 2019-07-24 21:26:56 +02:00
pages split admin/users component, ref #28 2019-07-25 12:37:50 +02:00
plugins user locale 2019-07-26 23:51:32 +02:00
server support db migration at startup 2019-07-26 23:52:18 +02:00
static . 2019-05-30 12:12:51 +02:00
store major on recurrent events 2019-07-23 01:31:43 +02:00
views/feed user locale 2019-07-26 23:51:32 +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 user locale, favicon 2019-07-24 21:26:56 +02:00
package.json v0.11.6 2019-07-24 23:16:00 +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