Skip to content
This repository has been archived by the owner on Mar 23, 2020. It is now read-only.

1. Getting Started

Nathan Fiscaletti edited this page Jun 30, 2018 · 19 revisions

How can I get Synful?

Video Tutorial

Coming Soon.

Provisioning Script

There is a useful Synful Provisioning Script hosted on GitHub that will automatically provision a Synful API server.

To use this provisioning script run the following commands from an Ubuntu server:

$ sudo su -c "bash <(wget -qO- https://provisioning.nathanf.tk/synful)" root

Note: When installing, select version dev-unstable to use the master branch of Synful.

You can also manually download this script and run it in headless mode by providing the parameters when invoking the script.

# Usage
#
# ./synful_provisioning_script.sh [version|stable|dev-unstable] [mysql-password] [y/n]
#
# The first parameter is the version to install,
# The second parameter is the MySql password to use,
# The third parameter is either y/n for allowing Sql over network.

# Example Usage: 

# sudo ./synful_provisioning_script.sh v2.0.4 mypassword y
# sudo ./synful_provisioning_script.sh stable mypassword n
# sudo ./synful_provisioning_script.sh v2.0.3 mypassword y

Next: Database Management