First, install the Sass, Font Awesome, bootstrap(and deps) package:
cd assets
- npm install --save-dev sass-brunch
- npm install --save font-awesome
| export const GENERIC_PREFETCH_CALL = "GENERIC_PREFETCH_CALL"; | |
| export const GENERIC_FETCH_SUCCESS_CALL = "GENERIC_FETCH_SUCCESS_CALL"; | |
| export const GENERIC_FETCH_FAIL_CALL = "GENERIC_FETCH_FAIL_CALL"; | |
| export const handleSuccessError = function(response){ | |
| return response.status !== 200 ? response.json().then(error => Promise.reject(error)) : response.json(); | |
| } | |
| export const fetchConstruct = function({ | |
| url, // required |
Use these rapid keyboard shortcuts to control the GitHub Atom text editor on macOS.
| #!/bin/bash | |
| # Stop all containers | |
| containers=`docker ps -a -q` | |
| if [ -n "$containers" ] ; then | |
| docker stop $containers | |
| fi | |
| # Delete all containers | |
| containers=`docker ps -a -q` | |
| if [ -n "$containers" ]; then | |
| docker rm -f -v $containers |
| { | |
| "USD": { | |
| "symbol": "$", | |
| "name": "US Dollar", | |
| "symbol_native": "$", | |
| "decimal_digits": 2, | |
| "rounding": 0, | |
| "code": "USD", | |
| "name_plural": "US dollars" | |
| }, |