Skip to content

zer0dt/simply-stream

Repository files navigation

Started with open source code from: https://iotawise.rdev.pro/

Running Locally

  1. Clone the repository.
git clone https://github.com/zer0dt/simply-stream.git
cd simply-stream
  1. Install dependencies using npm.
npm install
  1. Install Scrypt-CLI, Initialize, and Build Contract
npm install -g scrypt-cli
npx scrypt-cli init
npm run build:contract
  1. Copy env.example to env and update the variables (change the DATABASE_URL to your postgres instance)
cp .env.example .env
  1. Generate prisma client before starting development server.
npm run postinstall
  1. Start the development server.
npm run dev