4-Virtual environment and dependencies:
I recreated my virtual environment with venv and installed all the dependencies via my requirements.txt file.
Important note: I’m explaining this because the goal was to install my project on a new machine designed exclusively for programming, while my other computer is for gaming. So, the key step to remember is the third one, where Django recommends installing GDAL via OSGeo4W (https://docs.djangoproject.com/en/5.0/ref/contrib/gis/install/#windows).
Current issue: Deployment
I tried deploying my project on AWS using Docker, but I’m facing issues with installing GDAL in the Docker image.
I’m considering deploying my backend on Heroku, but I would like to get the community's advice on the best approach to host a project that uses GDAL and PostGIS, especially with this constraint of having to install GDAL via OSGeo4W.
My questions:
Which platform would you recommend for deploying a Django backend with GDAL and PostGIS (AWS, Heroku, others)?
Are there specific solutions to handle GDAL installation in Docker during deployment?
How have you managed similar situations in your projects?
Note: The constraint relates to GDAL installation via OSGeo4W.
Please tag me when you respond, as it will be easier for me to find the message even if you reply after a couple of days, given that Discord will notify me of your response to my query.
Thank you very much for your help!