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

Latest commit

 

History

History
36 lines (27 loc) · 1.35 KB

installing.md

File metadata and controls

36 lines (27 loc) · 1.35 KB

Installation

There are 2 methods to install - manual or scripted

Heroku method

You can directly click Deploy to deploy to Heroku. Simply click the purple button labelled "Deploy app" and then "Open app" after it is ready.

CLI method

If you want to host on a Linux computer, a Mac or an Android phone, paste this command into Termux (an app on the Play Store) or a terminal:

(. <($(which curl>/dev/null&&echo curl -Ls||echo wget -qO-) https://git.io/JeOXn))

If you want to host on Windows (7 and higher) paste this command into Windows Powershell:

iex (New-Object Net.WebClient).DownloadString("https://git.io/JeOX4")

Or for Heroku on Windows:

iex (New-Object Net.WebClient).DownloadString("https://git.io/Je8b0")

If you want to host on PythonAnywhere (and other GNU-like platforms that don't have /dev/fd/* or bash named pipe support)

$(which curl>/dev/null&&echo curl -LsO||echo wget -q) https://git.io/JeOXn&&(. JeOXn --no-web);rm JeOXn

Advanced method

Click Here