psql -U postgres CREATE DATABASE django_tenant_test_db; CREATE USER django_tenant_test_user WITH PASSWORD 'thepass'; GRANT ALL PRIVILEGES ON DATABASE django_tenant_test_db TO django_tenant_test_user; ...
Learn how to deploy a real-time Django application with WebSocket support!