Skip to content

Instantly share code, notes, and snippets.

View evereq's full-sized avatar
🔥
Building Ever 🚀

Ruslan Konviser evereq

🔥
Building Ever 🚀
View GitHub Profile
@StevenACoffman
StevenACoffman / Deploy Docker to AWS.md
Last active November 5, 2017 17:11 — forked from yefim/Dockerrun.aws.json
Build a Docker image, push it to AWS EC2 Container Registry, then deploy it to AWS Elastic Beanstalk

Placeholder

@yefim
yefim / Dockerrun.aws.json
Last active April 7, 2023 16:11
Build a Docker image, push it to AWS EC2 Container Registry, then deploy it to AWS Elastic Beanstalk
{
"AWSEBDockerrunVersion": "1",
"Image": {
"Name": "<AWS_ACCOUNT_ID>.dkr.ecr.us-east-1.amazonaws.com/<NAME>:<TAG>",
"Update": "true"
},
"Ports": [
{
"ContainerPort": "443"
}
@pjlammertyn
pjlammertyn / HandlebarsBundleTransform.cs
Created July 31, 2012 07:11 — forked from kylefritz/HandlebarsBundleTransform.cs
Compile Ember Handlebars Templates in .net mvc (2 options: first using postbuild, second using a bundle transform)
using System.IO;
using System.Text;
using System.Web;
using System.Web.Optimization;
using Jurassic;
namespace Fewt.Web
{
public class EmberHandlebarsBundleTransform : IBundleTransform
{
@mjtko
mjtko / handlebarsTemplateEngine.js
Created May 12, 2011 22:39
knockout template engine for handlebars.js
/*
Handlebars Template Engine for Knockout JavaScript library
*//*!
Copyright (c) 2011 Mark J. Titorenko
License: MIT (http://www.opensource.org/licenses/mit-license.php)
*/
ko.handlebarsTemplateEngine = function () {
// adapted from MooTools.Element
//
// This is necessary to allow us to easily deal with table