Skip to content

Instantly share code, notes, and snippets.

View jensneuhaus's full-sized avatar
🔥
Building Foundation as a Service

Jens Neuhaus jensneuhaus

🔥
Building Foundation as a Service
View GitHub Profile
@jensneuhaus
jensneuhaus / settings.json
Created February 6, 2024 16:37 — forked from adamghill/settings.json
VS Code settings
{
"editor.minimap.enabled": false,
"[javascript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[html]": {
"editor.insertSpaces": true,
"editor.tabSize": 2,
"editor.defaultFormatter": "HookyQR.beautify"
},
@jensneuhaus
jensneuhaus / circle.yml
Created March 13, 2017 12:16 — forked from jonah-williams/circle.yml
Automating deployments to Heroku from CircleCI
test:
override:
- bundle exec rspec spec
deployment:
acceptance:
branch: master
commands:
- ./script/heroku_deploy.sh <ACCEPTANCE_HEROKU_APP>:
timeout: 300