-Subproject commit c5d2023de2f038cb865a148076a4dc4ec24efaf7
+Subproject commit 52d01bc8d0ec34d96ae3751fa5709a8ae05066fd
DB_PORT=5432
DB_HOST=db
+POSTGRES_HOST=db
POSTGRES_PASSWORD=mysecretpassword
POSTGRES_DATABASE=teleforma
+POSTGRES_DB=teleforma
POSTGRES_USER=teleforma
+POSTGRES_HOST_AUTH_METHOD=trust
DEBUG=True
+
+DB_PORT=5432
+DB_HOST=db
+POSTGRES_HOST=db
+POSTGRES_PASSWORD=mysecretpassword
+POSTGRES_DATABASE=teleforma
+POSTGRES_DB=teleforma
+POSTGRES_USER=teleforma
+POSTGRES_HOST_AUTH_METHOD=trust
services:
app:
- command: /bin/sh bin/app.sh --runserver
+ command: /bin/sh /srv/app/wsgi.sh --runserver
env_file:
- 'env/debug.env'
ports:
profile = Profile(user=user)
profile.save()
student = Student(user=user)
+ student.platform_only = False
student.save()
profiles = Profile.objects.filter(user=user)