T1k.setup
do |config|
# Setup Github repository credentials # Create an auth_token here: https://github.com/settings/applications # # config.repository.adapter = :github # config.repository.setup do |c| # c.user = "GITHUB_USER" # c.repo = "REPOSITORY_NAME" # c.oauth_token = "YOUR_GITHUB_AUTH_TOKEN" # end # If you'll use bitbucket as repository you should set a shell variable with # your password as BITBUCKET_PWD in order to access bitbucket api # config.repository.adapter = :bitbucket # config.repository.setup do |c| # c.repo_owner = "REPO_OWNER" # c.repo = "REPO" # c.oauth_token = 'OAUTH_TOKEN' # c.oauth_secret = 'OAUTH_SECRET' # end # config.repository.default_remote_branch = :master # or # config.repository.default_remote_branch = :branch # |-> this option disables direct merge on origin master # Setup Trello board credentials # # Trello APP_DEVELOPER_KEY: https://trello.com/app-key # Trello App permission key: https://trello.com/1/connect?key=YOUR_KEY&name=BOARD_NAME&expiration=never&response_type=token&scope=read,write # # config.tracker.adapter = [:trello, :pivotal, :none] # config.tracker.setup do |c| # c.user_name = "TRELLO_USER" # c.board_name = "TRELLO_BOARD_NAME" # c.member_token = "TRELLO_APP_TOKEN" # c.developer_public_key = "TRELLO_DEVELOPER_PUB_KEY" # end
end