Fully open sourced Dockunit.io platform for running Dockunit containerized continuous integration tests.
Dockunit gives you true build freedom using Docker technology. No longer are you bound to testing your software in a limited set of environments with a limited set of utilities and dependencies. Define your own build environments using Dockunit with no restrictions; test across multiple versions of your favorite programming languages using a variety of technologies and tools. Dockunit.io lets you integrate your Dockunit tests into your software repositories. No more blindly merging pull requests. Dockunit.io tests integrate tightly with Github to automatically check the integrity of each change or proposed change to your code base.
Requirements:
Here are some easy steps to get started developing locally:
- Clone this repository.
- Run
npm install
from within the project directory. - One directory below the project directory, create a file called
secrets.js
. This file will contain some secret keys that the platform will use. For most of the keys, you can just fill in dummy data for testing. Here is an examplesecrets.js
file:
module.exports = {
githubClientId: 'xxxxxxx',
githubClientSecret: 'xxxxxxx',
githubWebhooksSecret: 'xxxxxxx',
sessionSecret: 'xxxxxxx'
};
- Run
DEBUG=dockunit grunt
from within the project directory.
Dockunit Platform is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version.