/DevOps_Testing

Primary LanguageJavaScriptMIT LicenseMIT

In DevOps_Testing project we took an existing App from GitHub (https://github.com/scotch-io/node-todo) and deployed it to the Google Cloud Platform. We used MongoDB for creating the database. You also need to set up your database (We created a free cluster and set up a serverless vpc connection) For the deployment we decided to use Google App Engine. We split the application into two services - default (frontend) and api (backend). We wrote configuration files using YAML syntax.

Node Todo App

A Node app built with MongoDB and Angular. For demonstration purposes and a tutorial.

Node provides the RESTful API. Angular provides the frontend and accesses the API. MongoDB stores like a hoarder.

Requirements

  • Node and npm
  • MongoDB: Make sure you have your own local or remote MongoDB database URI configured in config/database.js

Installation

  1. Clone the repository: git clone git@github.com:scotch-io/node-todo
  2. Install the application: npm install
  3. Place your own MongoDB URI in config/database.js
  4. Start the server: node server.js
  5. View in browser at http://localhost:8080

Tutorial Series

This repo corresponds to the Node Todo Tutorial Series on scotch.io

Each branch represents a certain tutorial.

Happy Todo-ing!

Todo-aholic