/mold

Image transformation web demo project.

Primary LanguageTypeScriptGNU General Public License v3.0GPL-3.0

Mold

A web demo project where the user can upload an image, perform some transformations on it, and download the result.

Getting Started

To start the development server on port 8000:

git clone https://github.com/mirryi/mold
cd mold
npm install
npm run start

Build for development:

npm run build:dev

Build for production:

npm run build:dev

Docker

The Dockerfile produces a production build and serves it with NginX:

docker build --tag=mold .
docker run -it -p 8000:80/tcp mold