You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Create a Django app hangouts for the new Hangouts api endpoint, and a apps.py file to go with it.
See Django startapp for some background details on how to do this via the manage.py app when using a virtualenv.
Since we are mostly using docker, docker-compose run --rm app django-admin startapp hangouts is the equivalent command to create the folders and placeholders.
You can also create the folders manually directly inside the git repo, but this won't give you the placeholder files that Django creates automatically.
PARENT TRACKING ISSUE: #160Create a Django app
hangoutsfor the new Hangouts api endpoint, and aapps.pyfile to go with it.See Django startapp for some background details on how to do this via the
manage.pyapp when using avirtualenv.Since we are mostly using docker,
docker-compose run --rm app django-admin startapp hangoutsis the equivalent command to create the folders and placeholders.You can also create the folders manually directly inside the git repo, but this won't give you the placeholder files that Django creates automatically.