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
async function fetchConfig() { | |
const response = await fetch( | |
`${TMDB_API_PATH}/configuration?api_key=${TMDB_API_KEY}`, | |
); | |
return await response.json(); | |
} | |
// Async/Await requirements: Latest Chrome/FF browser or Babel: https://babeljs.io/docs/plugins/transform-async-to-generator/ | |
// Fetch requirements: Latest Chrome/FF browser or Github fetch polyfill: https://github.com/github/fetch |
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
#Add a .static file to your app repo. | |
#Update BUILDPACK_URL: | |
dokku config:set YOUR_APP BUILDPACK_URL=https://github.com/dokku/buildpack-nginx.git |
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
mkdir ~/Documents/Files | |
echo "say Double Espresso Mackiato, and a bottle of your finest Barolo -r 300 -v Whisper" >> ~/Documents/Files/Startup.cmd | |
chmod +x ~/Documents/Files/Startup.cmd | |
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
ulimit -n 65536 | |
source ~/.bash_git | |
# enable the git bash completion commands | |
source ~/.git-completion.sh | |
# enable git unstaged indicators - set to a non-empty value | |
GIT_PS1_SHOWDIRTYSTATE="." | |
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
# bash/zsh git prompt support | |
# | |
# Copyright (C) 2006,2007 Shawn O. Pearce <[email protected]> | |
# Distributed under the GNU General Public License, version 2.0. | |
# | |
# This script allows you to see repository status in your prompt. | |
# | |
# To enable: | |
# | |
# 1) Copy this file to somewhere (e.g. ~/.git-prompt.sh). |
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
. |
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
# EditorConfig is awesome: http://EditorConfig.org | |
# top-most EditorConfig file | |
root = true | |
# Unix-style newlines with a newline ending every file | |
[*] | |
end_of_line = lf | |
insert_final_newline = true |
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
1. Requirements Gathering with Stakeholders. Gather User Journeys. | |
2. Design + UX collaborating to produce wireframes + low fidelity visuals, using technological insights (or experiments) from Front-End Developers. | |
3. Front-End prototyping. | |
5. UX listing components and variations. | |
6. Front-end architecture fleshed out according to UX requirements. | |
7. Design + Front-End styleguide planning. | |
8. Back-End and Infrastructure planning. | |
9. Agile Design + Development process from here. |
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
scp [email protected]:/home/dokku/ssl_temp ~/Dev/logs | |
# Add -r to copy directory |
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
cat ~/.ssh/az.pub | ssh [email protected] "sudo sshcommand acl-add dokku az" |