The completed version of our NASA project from Complete Node.js Developer: Zero to Mastery.
Keep in mind that we recommend you code along with us and use this only if you ever get stuck or you don't like to code along.
server/.env
file with a MONGO_URL
property set to your MongoDB connection string.npm install
npm run deploy
docker build -t nasa-project .
docker run -it -p 8000:8000 nasa-project
To run any automated tests, run npm test
. This will:
npm test --prefix client
npm test --prefix server