Skip to content

Instantly share code, notes, and snippets.

View chang-ngeno's full-sized avatar

Daniel Chang'masa chang-ngeno

View GitHub Profile
@chang-ngeno
chang-ngeno / install_and_deploy_elixir_phoenix_on_centos7_rhel.md
Created April 30, 2022 19:44 — forked from Ch4s3/install_and_deploy_elixir_phoenix_on_centos7_rhel.md
Instructions for installing Elixir 1.4, Phoenix 1.2.x, and Erlang 19+ on Centos7/RHEL and deploy with edeliver and distillery. Webpack + React + Yarn for JS

Set the environment variables

Install nano(or not if you intend to use vi)

yum install -y nano

Open ~/.profile with nano ~/.profile and add the following:

@chang-ngeno
chang-ngeno / Gulpfile.js
Created July 14, 2020 21:04 — forked from ronaldofs/Gulpfile.js
Example setup gulp, angularjs, bower, node.js
"use strict";
var gulp = require('gulp');
var concat = require('gulp-concat');
var refresh = require('gulp-livereload');
var client = require('tiny-lr')();
var nodemon = require('gulp-nodemon');
var sass = require('gulp-sass');
var del = require('del');
var concat = require('gulp-concat');