Files
gancio/docs/setup/classic.md
2019-07-15 23:36:32 +02:00

828 B

layout, title, permalink, parent
layout title permalink parent
default Classic /setup/classic Setup

Classic setup

  1. 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
  1. 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;
  1. Create a new user
adduser gancio
su gancio
  1. Setup & test
gancio --help
gancio setup
gancio start
  1. Enjoy 🎉
    Point your web browser to http://localhost:3000