Skip to content

Instantly share code, notes, and snippets.

View mediafreakch's full-sized avatar

Edgar Schnüriger mediafreakch

  • Zug, Switzerland
View GitHub Profile
@RobertoSchneiders
RobertoSchneiders / deploy_with_ebcli3_on_circleci.md
Last active December 4, 2023 09:07
Settings to deploy to AWS Elastic Beanstalk on CircleCi (EB Cli 3)

This is how I configured the deploy of my rails apps to AWS Elastic Beanstalk through CircleCI 1.0.

If you are using the Circle CI 2.0, take a look at this article from ryansimms

Configure Environments Variables

On Project Settings > Environment Variables add this keys:

  • AWS_ACCESS_KEY_ID
  • AWS_SECRET_ACCESS_KEY
    The aws user must have the right permissions. This can be hard, maybe, this can help you.
@kria
kria / PushSubscriber.cs
Created July 8, 2015 01:51
TFS Push Subscriber
using Microsoft.TeamFoundation.Common;
using Microsoft.TeamFoundation.Framework.Server;
using Microsoft.TeamFoundation.Git.Server;
using System;
using System.Linq;
namespace PushSub
{
public class PushSubscriber : ISubscriber
{