🚴♂️
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
app | |
Advances the app including UI, APIs, database, auth, and backend logic | |
#1D76DB | |
bug | |
Something isn't working as expected | |
#D93F0B | |
quality | |
Code quality, tests, linting, configuration, tooling, or dependencies |
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
{ | |
"packages": { | |
"add": [ | |
"browser-policy", | |
"audit-argument-checks", | |
"force-ssl", | |
"fortawesome:fontawesome", | |
"fastclick" | |
], | |
"remove": [ |
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
#!/bin/sh | |
DOMAIN=airlab.io | |
PORT=3000 | |
# Find configured IPv4 addresses, skip localhost | |
IP=`ifconfig |grep -oE "(inet )([0-9]+\.[0-9]+\.[0-9]+\.[0-9]+)"|awk '{print $2}' | grep -v "127.0.0.1"` | |
echo "Your IP: $IP" | |
# Replace periods with hyphens | |
HOSTNAME=`echo $IP | tr '.' '-'` |