Deploy model
You bring a Dockerfile or a Git repo. We build, run migrations on deploy, and attach managed PostgreSQL plus a volume for /media. ASGI works the same as WSGI — Channels and async views run without extra config.
EU hosting → France
French Django teams often run on Scaleway or Clever Cloud and want EU residency without paying Heroku-EU successor prices. Hostim runs Django in Falkenstein, with typical RTT around 18 ms to Paris. CNIL gets a clean answer: EU operator, EU data, no transfer to a third country.
# docker-compose.yml
services:
web:
image: my-django-app
environment:
- DJANGO_SETTINGS_MODULE=config.settings.prod
db:
image: postgres:16
volumes:
- db_data:/var/lib/postgresql/dataA French Django stack typically pairs PostgreSQL with persistent storage for /media uploads. CNIL has been the most active EU regulator on cookie consent and on enforcing transparent data processing — French controllers ask their host detailed questions about sub-processors. Hostim's answer is simple: HOSTIM.DEV UG operates the platform from Germany, all data is in Falkenstein, and the only sub-processor outside our control is Stripe for payments. Migrations run on each deploy via a release command. Background jobs (Celery) run as a separate app in the same project.
Latency. Typical RTT from Paris to our Falkenstein region is around 18 ms. CNIL enforces GDPR more aggressively than most EU regulators. French SaaS buyers often ask for a SCC-free architecture — meaning no transfer of personal data to the US. Hostim is fully in the EU and keeps you out of that question.
Regulator. CNIL (Commission nationale de l'informatique et des libertés).
Local law. Loi Informatique et Libertés, the French national data protection act. Hostim is operated by HOSTIM.DEV UG, a German company, with all data in Falkenstein, Germany — there is no transfer outside the EU for application data.
Local alternatives you may have considered: Scaleway, Clever Cloud, OVHcloud, Platform.sh.
Modern Django deployment is container-based. The app runs under Gunicorn or Uvicorn, with PostgreSQL on a separate service and persistent storage for media uploads. Hostim mirrors this layout one to one.
You bring a Dockerfile or a Git repo. We build, run migrations on deploy, and attach managed PostgreSQL plus a volume for /media. ASGI works the same as WSGI — Channels and async views run without extra config.
Two common failure points: media files lost on container restart, and DATABASE_URL hardcoded for local dev. Hostim provides persistent volumes for /media and injects DATABASE_URL at runtime.
DJANGO_SETTINGS_MODULE, SECRET_KEY, DEBUG, ALLOWED_HOSTS, DATABASE_URL
Le RTT typique de Paris à Falkenstein est de 18 ms. Pour une application Django classique (admin + API), c'est imperceptible.
Scaleway et Clever Cloud sont de bons hébergeurs EU. Hostim est moins cher au repos (€2.5/mois pour le conteneur, base PostgreSQL gratuite) et plus simple sur le plan facturation : un prix fixe par ressource, sans facturation à la requête.
Oui, Hostim agit comme sous-traitant pour les données que vous traitez. Un DPA en français est disponible sur demande.
Hostim injecte les variables d'environnement au démarrage. Activez le service PostgreSQL géré dans le projet, et Hostim ajoute DATABASE_URL automatiquement à votre conteneur Django.
Spin up an app in minutes. Managed database on the free tier, custom domain included.