Skip to content

Instantly share code, notes, and snippets.

@RyanMulready
Created September 21, 2018 14:56
Show Gist options
  • Save RyanMulready/3fc887d4886ec76b89fd292fdd57f4d4 to your computer and use it in GitHub Desktop.
Save RyanMulready/3fc887d4886ec76b89fd292fdd57f4d4 to your computer and use it in GitHub Desktop.
My Procfile
django: es-site/es/manage.py runserver 0.0.0.0:8000
compass: compass watch es-site/es/es/static
mail: maildev
log: tail -f local_es.log
storybook: yarn --cwd es-site/selfserve/ styleguide
@bhrutledge
Copy link

bhrutledge commented Sep 21, 2018

Also, I have a build task set up in VS Code, which means I can start my local server with Command+Shift+B:

{
    "version": "2.0.0",
    "tasks": [
        {
            "label": "overmind",
            "type": "shell",
            "command": "(. venv/bin/activate; overmind start -l django,bsync,sass,mail)",
            "problemMatcher": [],
            "group": {
                "kind": "build",
                "isDefault": true
            }
        }
    ]
}

@tomleo
Copy link

tomleo commented Sep 21, 2018

I should not I'm using hivemind not overmind.

@bhrutledge
Copy link

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment