StageFinder app API service.
- Node.js 20.6.0 or higher
- Npm
- MongoDB
Run a Docker container of MongoDB
docker run -d --rm -e MONGO_INITDB_ROOT_USERNAME=user -e MONGO_INITDB_ROOT_PASSWORD=secret -p 27018:27017 --name mongodb mongo:8.0- Create application configuration
cp .env.example .env
nano .envIn the .env file, set the MONGODB_URL to mongodb://127.0.0.1:27017/stagefinder
- Install dependencies
npm install- Start Application
npm startThe application is launched by Nodemon, which automatically restart the application on file change.