Skip to content

agmitron/transcriber

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

26 Commits
 
 
 
 
 
 

Repository files navigation

transcriber

Requirements

  1. Node.js v12 or later. You can download it here
  2. Docker to run the MongoDB image (or just MongoDB installed)

Installation

All the guide had written for Ubuntu Server Linux

  # Install Docker
  sudo apt install docker.io

  # Install Node.js
  curl -fsSL https://deb.nodesource.com/setup_14.x | sudo -E bash -
  sudo apt-get install -y nodejs

  # Clone this repo
  git clone https://github.com/nortimg/transcriber.git
  cd transcriber

  # Install project's dependencies
  npm i

Run MongoDB with Docker

For the first time:

  sudo docker run -p 27017:27017 --name mongodb -d mongo

It creates a container and runs it in background. That's you need to do later (to save your data, because it stores in container. Don't create new containers: use the old one).

  sudo docker start mongodb

Start app

  npm start

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages