828 B
828 B
layout, title, permalink, parent
| layout | title | permalink | parent |
|---|---|---|---|
| default | Classic | /setup/classic | Setup |
Classic setup
- Install Node.js
curl -sL https://deb.nodesource.com/setup_12.x | bash -
apt-get install -y nodejs
source 2. Install Gancio
npm install --global gancio
- Create database (optional)
apt install postgresql
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;
- Create a new user
adduser gancio
su gancio
- Setup & test
gancio --help
gancio setup
gancio start
- Enjoy 🎉
Point your web browser to http://localhost:3000