Skip to content

Deploy via terminal

David Reed edited this page Jan 8, 2023 · 6 revisions

Deploying Ultraviolet through a terminal is made easy.

Don't copy the $ in any of these commands when pasting in a terminal.

If you opened this repository in Replit:

  • skip the clone step, start at install
  • use the Replit terminal instead of the console by selecting "Shell" under tools or selecting the "Shell" tab in the Replit terminal

Clone

$ git clone https://github.com/titaniumnetwork-dev/Ultraviolet-App.git
> Cloning into Ultraviolet-App...
$ cd Ultraviolet-App

Install

$ npm install

If this takes long, you may attempt to omit dev dependencies:

$ npm install --omit=dev

Start

Once dependencies are installed, select the "Run" button on Replit or run:

$ npm start

Alternatively, run on a port:

$ PORT=8000 npm start
Clone this wiki locally