This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# OVERVIEW | |
# | |
# AWS Lambda Function To Trigger A Notification Into Slack Channel. | |
# | |
from __future__ import print_function | |
import boto3 | |
import json | |
import logging |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Overview - Server Setup with Dokku | |
# I had purchased the NearmeApp from CodeCanyon.net for a personal project. | |
# After watching the YouTube video (https://www.youtube.com/watch?v=WcXL2WuYhok) on server setup, I decided to do this on my own server. | |
# Below are instructions for making it easier to setup and reference for future projects. | |
# | |
# Assumption is to be using a fresh install of Ubuntu Server 14.05. | |
# Must successfully install Dokku using the instructions below from their site | |
# - http://dokku.viewdocs.io/dokku/getting-started/installation/#1-install-dokku | |
# - http://dokku.viewdocs.io/dokku/getting-started/installation/#2-setup-ssh-key-and-virtualhost-settings |