Giter Site home page Giter Site logo

praveenmunagapati / strider Goto Github PK

View Code? Open in Web Editor NEW

This project forked from strider-cd/strider

0.0 1.0 0.0 34.5 MB

Open Source Continuous Integration & Deployment Server

Home Page: http://strider-cd.github.io/

License: MIT License

Ruby 0.02% JavaScript 68.07% CSS 10.36% Shell 0.25% HTML 21.30%

strider's Introduction

Strider

NPM Code Climate Dependency Status Build Status
Gitter Backers on Open Collective Sponsors on Open Collective


Brilliant Continuous Deployment

Strider Screenshot more screenshots

Overview

Strider is an Open Source Continuous Deployment / Continuous Integration platform. It is written in Node.JS / JavaScript and uses MongoDB as a backing store. It is published under the BSD license.

Strider is extremely customizable through plugins. Plugins can

  • add hooks to perform arbitrary actions during build.
  • modify the database schema to add custom fields.
  • register their own HTTP routes.
  • subscribe to and emit socket events.
  • create or modify user interfaces within Strider.
  • so much more! just use your imagination!

General Requirements

Note: Installing on OS X might require XCode to be installed.

  • The package krb5-devel/libkrb5-dev might have to be installed to resolve Kerberos related build issues on some systems.

Running on Infrastructure

Make sure you have MongoDB installed on your system. You can get the latest version at mongodb.org.

Next you will need Node.JS. You can get binary packages for most platforms at nodejs.org.

Once you have Node.JS on your system, you can fetch & install all the dependencies for your Strider clone by executing the following command in the project root:

npm install

Note: Sometimes there are issues with permissions and installing global modules, in those cases run npm config set prefix ~/npm to set your global modules directory to '~/npm'. You will also have to add ~/npm/bin to your PATH environment variable.

Configuring

Strider configuration comes from environment variables. Most of the default values should work fine for running on localhost, however for an Internet-accessible deployment the following variables will need to be exported:

  • SERVER_NAME - Required; Address at which server will be accessible on the Internet. E.g. https://strider.example.com (note: no trailing slash, and included protocol)
  • HOST - Host where strider listens, optional (defaults to 0.0.0.0).
  • PORT - Port that strider runs on, optional (defaults to 3000).
  • CONCURRENT_JOBS - How many jobs to run concurrently (defaults to 1). Concurrency only works across different project and branch combinations. So if two jobs come in for the same project and branch, concurrency will always be 1.
  • STRIDER_CLONE_DEST - Where the repositories are cloned to (defaults to ~/.strider)
  • DB_URI - MongoDB DB URI if not localhost (you can safely use MongoLab free plan - works great)
  • HTTP_PROXY - Proxy support, optional (defaults to null)
  • If you want email notifications, configure an SMTP server (we recommend Mailgun for SMTP if you need a server - free account gives 200 emails / day):
    • SMTP_HOST - SMTP server hostname e.g. smtp.example.com
    • SMTP_PORT - SMTP server port e.g. 587 (default)
    • SMTP_SECURE - SMTP server TLS or SSL ("true" or "false")
    • SMTP_USER - SMTP auth username e.g. "myuser"
    • SMTP_PASS - SMTP auth password e.g. "supersecret"
    • SMTP_FROM - Default FROM address e.g. "Strider [email protected]" (default)

Additional Configurations

  • BODY_PARSER_LIMIT - Increase the maximum payload size that our body parser will attempt to parse. Useful for github web hooks.
  • DEBUG - Set this to strider* to enable all debug output. This is very helpful when troubleshooting issues or finding the cause of bugs in Strider. For more information see https://www.npmjs.com/package/debug

You might need to follow these instructions if you use any of these, please do so before filing issues.

Adding Initial Admin User

Strider isn't much use without an account to login with. Once you create an administrative user, you can invite as many other people as you like to your instance. There is a simple CLI subcommand to help you create the initial user:

node bin/strider addUser

Example run:

$ node bin/strider addUser
Enter email []: [email protected]
Is admin? (y/n) [n]: y
Enter password []: *******

Email:    [email protected]
Password: ****
isAdmin:  true
OK? (y/n) [y]:
22 Oct 21:21:01 - info: Connecting to MongoDB URL: mongodb://localhost/strider-foss
22 Oct 21:21:01 - info: User added successfully! Enjoy.

See the strider-cli for more details.

If you want to connect to your ldap server to authorization
you can also add the ldap.json config file to project root
the config like so:

 {
    "url": ldap://host:port,
    "baseDN": dnString,
    "username": username,
    "password": password,
    // If you want to set a admin group
    "adminDN": dnString
 }

Starting Strider

Once Strider has been installed and configured, it can be started with:

NODE_ENV=production npm start

Strider on Heroku

Deploy

To get up and running quickly on Heroku, you can simply use the button above. If you run into any issues, see the wiki entry.

Strider in Docker

Many users like to run Strider within a Docker container. Although this works well, supporting it is outside the scope of the Strider project.

We recommend using docker-strider as a base image when designing your Docker-based Strider installation. Please post related issues in the issues section for that repository.

Resources

  • Strider Tutorial Series - Extensive guides about Strider covering platform setup, 3rd party integrations (GitHub, GitLab, etc), continuous deployments (Heroku, SSH), notifications (email, Slack, HipChat), how to create your own Strider plugin and many more.
  • Strider on DigitalOcean - Covers setting up an Ubuntu machine with Strider using upstart.
  • Strider plugin template - Simple setup for getting started with your own plugin.
  • Panamax Strider template - Strider template for use with Panamax.

Advanced Topics

Advanced topics are located in the Wiki, here's a small subset of what's covered:

API Documentation

An effort has been started to document the existing REST API, and to have versioned documentation going forward. We use apiDoc for the documentation.

To build the documentation run npm run docs and the documentation will be accessable from apidocs/index.html.

View Strider API Docs

Backers

Support us with a monthly donation and help us continue our activities. [Become a backer]

Sponsors

Become a sponsor and get your logo on our README on Github with a link to your site. [Become a sponsor]

Support & Help

We are responsive to Github Issues - please don't hesitate submitting your issues here!

For live help check out Strider's Gitter.

strider's People

Contributors

jaredly avatar peterbraden avatar kfatehi avatar oliversalzburg avatar niallo avatar xdissent avatar pgte avatar michaelmior avatar constantx avatar mistergaskill avatar bitwit avatar knownasilya avatar rio avatar marcuspoehls avatar wpjunior avatar janruehling avatar smashwilson avatar saraf avatar xgalen avatar kauegimenes avatar nepoxx avatar trgr avatar viniciusgama avatar microadam avatar voffkaa avatar tomgco avatar tbouron avatar ortuna avatar marekventur avatar acreeger avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.