Skip to content
/ kms Public

Knowledge Management System, build by engineers who are passionate about Rails and coding

License

Notifications You must be signed in to change notification settings

charusat09/kms

Repository files navigation

Knowledge Management System

Ruby on Rails application build by passionate engineers. It supports knowledge managements and hepls to organize articles.

System Requirements:

  • Ruby-2.3.0
  • Rails 5.0.0.1

Rules of the Road

Setup

  1. Get the code.
% git clone https://github.com/charusat09/kms.git
  1. Setup your environment.
% bin/setup
  1. Start Rails Server
% bin/rails server
  1. Verify that the app is up and running.
% open http://localhost:3000

Protocol

  1. Make sure the master branch is up-to-date.
% git checkout master  
% git pull origin master  
  1. Create a feature branch off master.
% git checkout -b <branch-name>  
  1. Create work-in-progress commits (as needed).
% git commit -m "WIP Update user email"
  1. Regularly update your feature branch using rebase against master. Use caution when resolving merge conflicts.
% git rebase master
  1. When the feature is complete and the tests pass, share your branch.
% git push origin <branch-name>
  1. Submit a GitHub pull request against the master branch.

  2. A team member other than the author reviews the pull request.

  3. When satisfied, they comment on the pull request "Ready to merge".

  4. Rebase interactively. Squash commits like "Fix whitespace" into one valuable commit. Edit commit message to reveal intent.

% git rebase -i master  
% git push origin --force <branch-name>  
  1. An administrator will sign off and Merge the branch into staging.
% git checkout master  
% git merge <branch-name>  
  1. Delete your remote feature branch.

  2. Delete your local feature branch.

% git branch -d <branch-name>

Test Suite

1.How to run the test suite

# TODO

Deployment

# TODO

License

MIT License. Copyright 2016.

About

Knowledge Management System, build by engineers who are passionate about Rails and coding

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published