Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: jedie/manage_django_project
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v0.2.2
Choose a base ref
...
head repository: jedie/manage_django_project
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v0.3.0
Choose a head ref
  • 11 commits
  • 17 files changed
  • 1 contributor

Commits on Apr 5, 2023

  1. Small project updates

    jedie committed Apr 5, 2023
    Configuration menu
    Copy the full SHA
    0067ec2 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #17 from jedie/dev

    Small project updates
    jedie authored Apr 5, 2023
    Configuration menu
    Copy the full SHA
    e174b5d View commit details
    Browse the repository at this point in the history
  3. Delete README.md

    jedie authored Apr 5, 2023
    Configuration menu
    Copy the full SHA
    32132e2 View commit details
    Browse the repository at this point in the history
  4. Update manage.py

    jedie authored Apr 5, 2023
    Configuration menu
    Copy the full SHA
    a1b8ae2 View commit details
    Browse the repository at this point in the history
  5. Merge pull request #19 from jedie/jedie-patch-1

    Update manage.py
    jedie authored Apr 5, 2023
    Configuration menu
    Copy the full SHA
    c36fd94 View commit details
    Browse the repository at this point in the history
  6. Bugfix tox run

    jedie authored Apr 5, 2023
    Configuration menu
    Copy the full SHA
    93a4929 View commit details
    Browse the repository at this point in the history
  7. Merge pull request #20 from jedie/jedie-patch-1

    Bugfix tox run
    jedie authored Apr 5, 2023
    Configuration menu
    Copy the full SHA
    780a8de View commit details
    Browse the repository at this point in the history
  8. Move from __main__.py into pyproject.toml

    The config was moved out from `__main__.py` into `pyproject.toml`
    
    You must add in your `pyproject.toml` the following stuff:
    ```toml
    [manage_django_project]
    module_name="your_project_example"
    
    local_settings='your_project.settings.local'
    
    test_settings='your_project.settings.tests'
    ```
    
    The `config` argument was remove from `execute_django_from_command_line()`, so your `__main__.py`
    must look like:
    
    ```python
    from manage_django_project.manage import execute_django_from_command_line
    
    def main():
        execute_django_from_command_line()
    
    if __name__ == '__main__':
        main()
    ```
    jedie committed Apr 5, 2023
    Configuration menu
    Copy the full SHA
    b6e69a7 View commit details
    Browse the repository at this point in the history
  9. Merge pull request #18 from jedie/dev

    Move from `__main__.py` into `pyproject.toml`
    jedie authored Apr 5, 2023
    Configuration menu
    Copy the full SHA
    ad4f8c0 View commit details
    Browse the repository at this point in the history
  10. Release as v0.3.0

    jedie committed Apr 5, 2023
    Configuration menu
    Copy the full SHA
    0fc0792 View commit details
    Browse the repository at this point in the history
  11. Merge pull request #21 from jedie/dev

    Release as v0.3.0
    jedie authored Apr 5, 2023
    Configuration menu
    Copy the full SHA
    42ffdb1 View commit details
    Browse the repository at this point in the history
Loading