The completed version of NASA project that I have deployed after completing the course Complete Node.js Developer: Zero to Mastery.
- Ensure you have Node.js installed.
- Create a free Mongo Atlas database online or start a local MongoDB database.
- Create a
server/.envfile with aMONGO_URLproperty set to your MongoDB connection string. - In the terminal, run:
npm install
- In the terminal, run:
npm run deploy - Browse to the mission control frontend at localhost:8000 and schedule an interstellar launch!
To run any automated tests, run npm test. This will:
- Run all the client-side tests:
npm test --prefix client - Run all the server-side tests:
npm test --prefix server