opencdms / surface

GNU General Public License v3.0
6 stars 4 forks source link

Structure of Django project #62

Open isedwards opened 2 years ago

isedwards commented 2 years ago

The structure of the Django application in the surface repository is currently:

api/
    manage.py
    tempestas_api/
        __init__.py
        settings.py
        urls.py
        wsgi.py

For consistency with other Django projects, could we change this to:

𝘀𝘂𝗿𝗳𝗮𝗰𝗲/
    manage.py
    𝘀𝘂𝗿𝗳𝗮𝗰𝗲/
        __init__.py
        settings.py
        urls.py
        wsgi.py

This will require a number of internal code changes to ensure that everything continues to work correctly (e.g. updating manage.py). The nginx and docker configurations will also need updating.