diff --git a/README.md b/README.md index 86dc37b..e6c5d64 100644 --- a/README.md +++ b/README.md @@ -203,6 +203,12 @@ docker-compose exec get_together python3 manage.py createsuperuser You can then connect to the container by going to localhost:8000 +## Changing name and hostname + +If you want to use this software with an own hostname you need to change the site settings: + +`./env/bin/python manage.py shell -c "from django.contrib.sites.models import Site; Site.objects.filter(domain='example.com').update(name='My Site', domain='mysite.tld')"` + ## Test Federation You can import live event data into your "Searchable" table with this command: diff --git a/get_together/templates/get_together/index.html b/get_together/templates/get_together/index.html index bf0a577..114c99b 100644 --- a/get_together/templates/get_together/index.html +++ b/get_together/templates/get_together/index.html @@ -7,7 +7,9 @@ {% block content %}
+{% if settings.GOOGLE_MAPS_API_KEY %}
+{% endif %}