thebinarypenguin / guinea-pig-server

A Sample application for testing various cloud platforms
0 stars 0 forks source link

Technically it's supposed to be a hamster sitting in a little airplane.
   From The Simpsons episode 'Duffless'

Guinea Pig (server)

A sample application for testing various cloud platforms

Build Status codecov

Features

Installation

  1. Create an environment file.

    cp example.env .env

    Replace the sample content with your database credentials and other configuration options. You will need one database for the application and a second database for the tests.

  2. Install dependencies.

    npm install
  3. Migrate the application database.

    npm run migrate-up
  4. Seed the application database.

    npm run seed
  5. Start the application.

    npm start