/homer-frontend

Primary LanguageJavaScriptMIT LicenseMIT

homer-frontend application

homer-backend application can be found here

Prerequisites

Both for the back end and front end application check

Local setup

Go to your project root folder via command line

cd path/to/homer-frontend

Install node dependencies

npm install

Start the project

npm start

Then you can access the frontend at localhost:8000

Running the frontend in a container

docker build -t homer-frontend:dev .
  • run
cd ..
docker run -it -p 8000:8000 --rm -v homer-frontend:/app -e CHOKIDAR_USEPOLLING=true homer-frontend:dev
  • Then you can access the frontend at localhost:8000