Skip to content

Instantly share code, notes, and snippets.

View Yogendra0Sharma's full-sized avatar
🎯
Focusing

Yogendra Sharma Yogendra0Sharma

🎯
Focusing
View GitHub Profile
@Yogendra0Sharma
Yogendra0Sharma / README.md
Created October 24, 2017 11:30 — forked from smoser/README.md
publishing image to azure

Publishing an image on Azure

Installation of azure cli tools

The azure cli tool is used to do this publication. To install it follow below. For further questions see Azure CLI Install

# add ~/bin and add it to path
mkdir -p ~/bin/
[ "${PATH#*$HOME/bin}" = "$PATH" ] || PATH=$HOME/bin:$PATH

install npm

@Yogendra0Sharma
Yogendra0Sharma / deploy.cmd
Created October 24, 2017 11:28 — forked from manny42/deploy.cmd
Deployment Script for a React, NodeJs project on Azure WebApp
@if "%SCM_TRACE_LEVEL%" NEQ "4" @echo off
:: ----------------------
:: KUDU Deployment Script
:: Version: 1.0.15
:: ----------------------
:: Prerequisites
:: -------------

Deploy a Express.js project on Heroku

Step by step from command line by Michael Hsu

Quick start

Create a Node.js web framework 'express'

$ express myfirstexpress && cd myfirstexpress

Declare dependencies with NPM /package.json

@Yogendra0Sharma
Yogendra0Sharma / Migrate_and_Deploy_Django_app_on_Heroku.md
Created August 23, 2017 06:18 — forked from genomics-geek/Migrate_and_Deploy_Django_app_on_Heroku.md
Guide on how to migrate your Django web application to be deployed on Heroku
@Yogendra0Sharma
Yogendra0Sharma / Readm.md
Created July 27, 2017 09:19 — forked from jeroenvandijk/Readm.md
Instructions to test Logstash with Kafka

Test Logstash with Kafka

Setup Kafka

Download Kafka from:

https://www.apache.org/dyn/closer.cgi/incubator/kafka/kafka-0.7.2-incubating/kafka-0.7.2-incubating-src.tgz

Install Kafka

@Yogendra0Sharma
Yogendra0Sharma / VAGRANT-COURSE.md
Created June 12, 2017 06:41 — forked from yeukhon/VAGRANT-COURSE.md
Vagrant crash course

Intro to Advanced Python

By Adam Anderson

[email protected]

These notes are mostly just summaries of the provided references. The purpose of this document is to centralize the resources I found useful so they would be easy to find. Most definitions and explanations are paraphrased or quoted directly from the sources.

Table of Contents

@Yogendra0Sharma
Yogendra0Sharma / nginx.default.conf
Created May 26, 2017 12:31 — forked from santoshachari/nginx.default.conf
PHP5.6 and NGINX: Install PHP56-FPM, Nginx & MySQL on EC2 with Amazon Linux AMI
# Install linux update, followed by GCC and Make
sudo yum -y update
sudo yum install -y gcc make
# Install Nginx and php56-FPM
sudo yum install -y nginx php56-fpm
# Install php56 extensions
sudo yum install -y php56-devel php-mysql php56-pdo php56-pear php56-mbstring php56-cli php56-odbc php56-imap php56-gd php56-xml php56-soap