https://github.com/django-simple-deploy/django-simple-deploy
A reusable Django app that configures your project for deployment
https://github.com/django-simple-deploy/django-simple-deploy
Last synced: 5 days ago
JSON representation
A reusable Django app that configures your project for deployment
- Host: GitHub
- URL: https://github.com/django-simple-deploy/django-simple-deploy
- Owner: django-simple-deploy
- License: bsd-3-clause
- Created: 2021-10-22T18:35:34.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2024-11-07T15:40:50.000Z (5 months ago)
- Last Synced: 2024-11-07T15:55:24.113Z (5 months ago)
- Language: Python
- Size: 16.7 MB
- Stars: 309
- Watchers: 6
- Forks: 26
- Open Issues: 20
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- Contributing: docs/contributing/architecture_notes.md
- License: LICENSE
- Roadmap: docs/roadmap/index.md
Awesome Lists containing this project
- stars - django-simple-deploy/django-simple-deploy - Deployment, for Djangonauts with deadlines. (Python)
README
# django-simple-deploy
Deployment, for Djangonauts with deadlines.
## Documentation
The full documentation for this project is at [Read the Docs](https://django-simple-deploy.readthedocs.io/en/latest/).
Some documentation has not been moved to Read the Docs yet. You may find what you're looking for in the `old_docs/` directory, but some of that information is out of date.
## Quickstart
This app gives you a management command that configures your project for an initial deployment. It targets [Fly.io](https://fly.io), [Platform.sh](https://platform.sh), and [Heroku](https://heroku.com) at the moment, and can be expanded to target other platforms as well.
If you have a relatively simple Django project that runs locally, you can deploy your project in a few short steps. The only change you'll need to make to your project is to add this app to `INSTALLED_APPS`.

The above command will deploy your project to Fly.io. To deploy to another platform such as Platform.sh, just install a different plugin when you install `django-simple-deploy`:
```sh
$ pip install "django-simple-deploy[platform_sh]"
```All output is captured and written to a log file stored in `dsd_logs/`, which is placed at the project's root directory.