Positive | Negative | |
---|---|---|
True | ✅ Good Hire | ✅ Good Rejection |
False | ❌ Bad Hire | ❌ Bad Rejection |
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
const redis = new Redis(process.env.REDIS_URL); |
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
const redis = new Redis({ | |
host: 'localhost', | |
port: 6379, | |
}); |
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
const redis = new Redis({ | |
host: process.env.REDIS_HOSTNAME, | |
port: process.env.REDIS_PORT, | |
password: process.env.REDIS_PASSWORD, | |
}); |
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
const Redis = require('ioredis'); |
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
{ | |
"root": "dist/", | |
"routes": { | |
"**": "index.html" | |
}, | |
"https_only": true, | |
"error_page": "index.html", | |
"headers": { | |
"/**": { | |
"Cache-Control": "public, max-age=0, must-revalidate" |
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
{ | |
"buildpacks": [ | |
{ | |
"url": "heroku/nodejs" | |
}, | |
{ | |
"url": "https://github.com/heroku/heroku-buildpack-static" | |
} | |
] | |
} |
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
heroku buildpacks:set heroku/nodejs --app <MY_APP_NAME> | |
heroku buildpacks:add https://github.com/heroku/heroku-buildpack-static.git --app <MY_APP_NAME> |
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
{ | |
"scripts": { | |
"build": "parcel build" | |
} | |
} |
Technical Fit | Not Technical Fit | |
---|---|---|
Cultural Fit | ✅ Hire | ❌ Reject |
Not Cultural Fit | ❌ Reject | ❌ Reject |