Skip to content

Instantly share code, notes, and snippets.

@shrawanx
Created April 2, 2023 11:41
Show Gist options
  • Save shrawanx/96e9e995643e6ccc0a897b3ffe835ce6 to your computer and use it in GitHub Desktop.
Save shrawanx/96e9e995643e6ccc0a897b3ffe835ce6 to your computer and use it in GitHub Desktop.
run.json example for running Django inside Jetbrains fleet IDE (.fleet/run.json)
{
"configurations": [
{
"name": "Run Django",
"type": "python",
"arguments": ["manage.py", "runserver", "0.0.0.0:8000"],
"environment": {
"PYTHONUNBUFFERED": "1",
}
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment