Skip to content

Latest commit

 

History

History
35 lines (31 loc) · 945 Bytes

README.md

File metadata and controls

35 lines (31 loc) · 945 Bytes

Image Upscaler

Image Upscaler is a web app that uses SRCNN and SRGAN models to increase the resolution of your low resolution images without losing quality.

This repository contains the frontend for Image Upscaler created using NextJS.

Screenshots

Upload view

Upload View

Upscale view

Upload View

Getting started

Installing dependencies

npm install

Environment variables

Create a .env file and put the following variables inside the file :

  • DATABASE_URL
  • GOOGLE_OAUTH_CLIENT_SECRET
  • GOOGLE_OAUTH_TOKEN_URI
  • JWT_ACCESS_PRIVATE_KEY
  • JWT_REFRESH_PRIVATE_KEY
  • NEXT_SERVER_URL
  • UPSCALE_BACKEND_URL

Prisma migrations

prisma migrate dev/deploy

Start the development server

npm run dev