Simple web application for collecting and voting on ideas.
- Node.js >=14
- Docker (optional)
npm installnpm startOpen your browser at http://localhost:3000
npm run devnpm testBuild and run the container:
docker build -t ideas-app .
docker run -p 3000:3000 -v ideas_data:/data ideas-appOr with docker-compose:
docker-compose up --build