gancio-upstream/docs/setup/classic.md

1.5 KiB

layout title permalink parent
default Classic /setup/classic Setup

Classic setup

  1. Install Node.js and postgreSQL
curl -sL https://deb.nodesource.com/setup_12.x | bash -
apt-get install -y nodejs postgresql

source

  1. 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 database (optional as you can use sqlite, but recommended)
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 user to run gancio from
adduser gancio
su gancio
  1. Test & launch interactive setup
gancio --help
gancio setup
  1. Start
gancio --help
gancio setup
gancio start
  1. Point your web browser to http://localhost:13120 or where you selected during setup.

  2. Setup nginx as a proxy

  3. Deploy in production
    If you don't use the docker way, in production you should use something like pm2:

sudo npm install --global pm2
pm2 gancio start