Skip to content

tykealy/finite-automata

Repository files navigation

Getting Started

With docker

Build docker image

docker build -t fa-image .

Make container

docker run --name fa-container -v  Your/path/to/the/project:/usr/src/app -p 3000:3000 fa-image

To stop the container

docker stop fa-container

To start the container

docker start fa-container

After starting container you can access the app at http://localhost:3000

Or you can run the app locally

Install all the dependencies:

npm install

First, run the development server:

npm run dev