Skip to content

waleedahmad/nverter

master
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Code

Latest commit

 

Git stats

Files

Permalink
Failed to load latest commit information.
Type
Name
Latest commit message
Commit time
 
 
 
 
 
 
src
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

nverter

alt text

System Requirements

Just node.js. On Mac and Windows, every else is installed automatically. However on Linux, you must install HandbrakeCLI manually with these commands:

sudo add-apt-repository --yes ppa:stebbins/handbrake-releases
sudo apt-get update -qq
sudo apt-get install -qq handbrake-cli
Setup Instructions
# Install dependencies
$ npm install 

# Configure Web Server port
$ nano config/default.json

{
  "port" : 3000
}

# Building frontend code
$ npm run watch

# Running dev server to watch code with nodemon
$ npm run dev-server

# Running server
$ npm run start