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