dj-beat-drop is a CLI utility designed to simplify the creation of new Django projects by organizing all configuration
files into a config directory, instead of using Django's default naming convention. This approach avoids the
antipattern of naming the config directory the same as the project name.
This project is in the very early stages of development, focusing on defining the API. Future releases will include additional features and improvements.
- Simplified Project Structure: All configuration files are placed in a
configdirectory. - Latest Django Version: Currently, the utility uses the latest release of Django.
- Third-Party Templates: Add support for using a third-party template.
- Polish: Add lots of polish inspired by
laravelCLI. - Official Django Project: Aim to have this utility included as an official Django project, potentially renaming the
command to
djangofor easier usage (e.g.,django new). Tests: Add tests to ensure the utility works as expected.Environment Variables: Add support for environment variables to configure the project.LTS Version: Add an option so you can use the latest LTS version of Django instead of the latest release default.pyproject.tomlIntegration: Set up new Django projects with apyproject.tomlfile that can be used byuvto run the project.
pip install dj-beat-drop# If you just installed dj-beat-drop, then reload your shell to make the command available.
beatdrop new example_project