This file contains 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
➜ pos-mobile-app-deploy NA-17-borrower-app-profile-development ✓ y start:local | |
yarn run v1.22.19 | |
$ rnuc .env.client_b.yml; NODE_ENV=development react-native start | |
▒▒▓▓▓▓▒▒ | |
▒▓▓▓▒▒░░▒▒▓▓▓▒ | |
▒▓▓▓▓░░░▒▒▒▒░░░▓▓▓▓▒ | |
▓▓▒▒▒▓▓▓▓▓▓▓▓▓▓▓▓▒▒▒▓▓ | |
▓▓░░░░░▒▓▓▓▓▓▓▒░░░░░▓▓ | |
▓▓░░▓▓▒░░░▒▒░░░▒▓▒░░▓▓ |
This file contains 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
<head> | |
<meta content="INDEX, FOLLOW" name="ROBOTS" class="next-head" /> | |
<script src="https://cdnjs.cloudflare.com/ajax/libs/babel-polyfill/7.4.0/polyfill.min.js" type="text/javascript" | |
class="next-head"></script> | |
<meta content="width=device-width, initial-scale=1, user-scalable=no" name="viewport" class="next-head" /> | |
<link href="/static/apple-touch-icon.png" rel="apple-touch-icon" sizes="180x180" class="next-head" /> | |
<link href="/static/favicon-32x32.png" rel="icon" sizes="32x32" type="image/png" class="next-head" /> | |
<link href="/static/favicon-16x16.png" rel="icon" sizes="16x16" type="image/png" class="next-head" /> | |
<link href="/static/site.webmanifest" rel="manifest" class="next-head" /> | |
<link color="#5bbad5" href="/static/safari-pinned-tab.svg" rel="mask-icon" class="next-head" /> |
This file contains 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
const contentful = require('contentful'); | |
const client = contentful.createClient({ | |
space: '<space_id>', | |
accessToken: '<access_token>', | |
}); | |
export default (req, res) => { | |
return client.getEntry({ | |
content_type: 'page', |
This file contains 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
#!/usr/bin/env bash | |
STAGED_FILES=$(git diff --name-only --cached --diff-filter=ACM -- *.jsx *.js) | |
# STAGED_FILES=$(git diff -- *.jsx --cached --name-only --diff-filter=ACM) | |
BIN_PATH="$(git rev-parse --show-toplevel)/node_modules/.bin" | |
eslint() { | |
ESLINT="$BIN_PATH/eslint" | |
# Check for eslint |
This file contains 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
# Your init script | |
# | |
# Atom will evaluate this file each time a new window is opened. It is run | |
# after packages are loaded/activated and after the previous editor state | |
# has been restored. | |
# | |
# An example hack to log to the console when each text editor is saved. | |
# | |
# atom.workspace.observeTextEditors (editor) -> | |
# editor.onDidSave -> |
This file contains 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
#!/usr/bin/env bash | |
# start your app first; pm2 start ./build/server.js --name app-name | |
# then, place in repo.git/hooks/post-receive | |
# and set permissions: | |
# chmod +x hooks/post-receive | |
set -u | |
set -e |
This file contains 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
{ | |
"remove-empty-rulesets": true, | |
"always-semicolon": true, | |
"color-case": "upper", | |
"block-indent": " ", | |
"color-shorthand": false, | |
"element-case": "lower", | |
"eof-newline": true, | |
"leading-zero": false, | |
"quotes": "double", |
This file contains 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
{ | |
"remove-empty-rulesets": true, | |
"always-semicolon": true, | |
"color-case": "upper", | |
"block-indent": " ", | |
"color-shorthand": false, | |
"element-case": "lower", | |
"eof-newline": true, | |
"leading-zero": true, | |
"quotes": "single", |
This file contains 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
{"lastUpload":"2019-01-20T23:04:39.991Z","extensionVersion":"v3.2.4"} |
This file contains 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
exports.config = { | |
api: "api.catalogs.com", | |
root: "http://shopii.catalogs.com", | |
port: 1234, | |
fb: { | |
appId: '246541675489369' | |
}, | |
environment: 'development' | |
}; |
NewerOlder