Skip to content

Latest commit

 

History

History

README.md

Ideas App

Simple web application for collecting and voting on ideas.

Requirements

  • Node.js >=14
  • Docker (optional)

Installation

npm install

Running

npm start

Open your browser at http://localhost:3000

Development

npm run dev

Testing

npm test

Docker

Build and run the container:

docker build -t ideas-app .
docker run -p 3000:3000 -v ideas_data:/data ideas-app

Or with docker-compose:

docker-compose up --build