Skip to content

Latest commit

 

History

History
52 lines (33 loc) · 1.32 KB

README.md

File metadata and controls

52 lines (33 loc) · 1.32 KB

Linked Volunteering UI

Build Status

Prerequisites

  • Yarn
  • Strong recommendation for an IDE: VSCode

Recommended VSCode plugins:

Setup

After cloning this repository, create a new .env.local file from the provided .env.example file and configure it as needed:

$ cp .env.example .env.development.local

Development

To start development environment, run:

$ yarn start

This will start the application to run in port 3000

Testing

End-to-end testing is created with Playwright. To run tests:

$ yarn test:e2e:install
$ yarn test:e2e:start

Docker

Before building image docker image at the first time, create a new .env.local file from the provided .env.example file and configure it as needed:

$ cp .env.example .env.production.local

docker-compose build to build docker image docker-compose up to start the dockerized dev-environment. Not for production!!!
docker-compose down stops the container.