├── .cloudbuild ├── build-migrate-deploy.yaml └── django_migrate.sh ├── .dockerignore ├── .env-local ├── .gcloud ├── README.md ├── djangomigrate.yaml ├── postbuild.sh ├── postcreate.sh ├── prebuild.sh └── precreate.sh ├── .gcloudignore ├── .github └── workflows │ └── django-test.yml ├── .gitignore ├── .util ├── README.md ├── bash_helpers.sh ├── cliformatting.py ├── deployment_checks.py ├── helper ├── markdown.py └── requirements.txt ├── CONTRIBUTING.md ├── Dockerfile ├── LICENSE ├── README.md ├── app.json ├── docker-compose.yml ├── docs ├── 00-test-local.md ├── 10-setup-gcp.md ├── 20-setup-sql.md ├── 30-setup-bucket.md ├── 40-setup-secrets.md ├── 50-first-deployment.md ├── 60-ongoing-deployments.md ├── 70-manual-deployments.md ├── 80-automation.md ├── 90-cleanup.md ├── yy_styleguide.md └── zz_debugging.md ├── experimental ├── README.md ├── button_test.yaml ├── cleanup.yaml ├── cloudbuild.yaml ├── gen_test.yaml ├── nested.yaml ├── project_setup.sh ├── setup.sh └── terraform_test.yaml ├── manage.py ├── requirements.txt ├── terraform ├── .gitignore ├── bucket.tf ├── database.tf ├── etc │ ├── env.tpl │ └── get_image_digest.sh ├── main.tf ├── output.tf ├── project_services.tf ├── secrets.tf ├── service.tf └── variables.tf └── unicodex ├── __init__.py ├── admin.py ├── fixtures └── sampledata.yaml ├── management └── commands │ ├── import_emoji.py │ └── import_from_vendor.py ├── migrations ├── 0001_initial.py ├── 0002_create_superuser.py ├── 0003_codepoint_order.py ├── 0004_auto_20200922_2216.py └── __init__.py ├── models.py ├── settings.py ├── static └── css │ ├── normalize.css │ ├── skeleton.css │ └── unicodex.css ├── templates ├── base.html ├── codepoint.html └── index.html ├── tests.py ├── urls.py ├── views.py └── wsgi.py /.cloudbuild/build-migrate-deploy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/django-demo-app-unicodex/HEAD/.cloudbuild/build-migrate-deploy.yaml -------------------------------------------------------------------------------- /.cloudbuild/django_migrate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/django-demo-app-unicodex/HEAD/.cloudbuild/django_migrate.sh -------------------------------------------------------------------------------- /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/django-demo-app-unicodex/HEAD/.dockerignore -------------------------------------------------------------------------------- /.env-local: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/django-demo-app-unicodex/HEAD/.env-local -------------------------------------------------------------------------------- /.gcloud/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/django-demo-app-unicodex/HEAD/.gcloud/README.md -------------------------------------------------------------------------------- /.gcloud/djangomigrate.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/django-demo-app-unicodex/HEAD/.gcloud/djangomigrate.yaml -------------------------------------------------------------------------------- /.gcloud/postbuild.sh: -------------------------------------------------------------------------------- 1 | echo "No prebuild steps defined" 2 | -------------------------------------------------------------------------------- /.gcloud/postcreate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/django-demo-app-unicodex/HEAD/.gcloud/postcreate.sh -------------------------------------------------------------------------------- /.gcloud/prebuild.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/django-demo-app-unicodex/HEAD/.gcloud/prebuild.sh -------------------------------------------------------------------------------- /.gcloud/precreate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/django-demo-app-unicodex/HEAD/.gcloud/precreate.sh -------------------------------------------------------------------------------- /.gcloudignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/django-demo-app-unicodex/HEAD/.gcloudignore -------------------------------------------------------------------------------- /.github/workflows/django-test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/django-demo-app-unicodex/HEAD/.github/workflows/django-test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/django-demo-app-unicodex/HEAD/.gitignore -------------------------------------------------------------------------------- /.util/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/django-demo-app-unicodex/HEAD/.util/README.md -------------------------------------------------------------------------------- /.util/bash_helpers.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/django-demo-app-unicodex/HEAD/.util/bash_helpers.sh -------------------------------------------------------------------------------- /.util/cliformatting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/django-demo-app-unicodex/HEAD/.util/cliformatting.py -------------------------------------------------------------------------------- /.util/deployment_checks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/django-demo-app-unicodex/HEAD/.util/deployment_checks.py -------------------------------------------------------------------------------- /.util/helper: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/django-demo-app-unicodex/HEAD/.util/helper -------------------------------------------------------------------------------- /.util/markdown.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/django-demo-app-unicodex/HEAD/.util/markdown.py -------------------------------------------------------------------------------- /.util/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/django-demo-app-unicodex/HEAD/.util/requirements.txt -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/django-demo-app-unicodex/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/django-demo-app-unicodex/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/django-demo-app-unicodex/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/django-demo-app-unicodex/HEAD/README.md -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/django-demo-app-unicodex/HEAD/app.json -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/django-demo-app-unicodex/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /docs/00-test-local.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/django-demo-app-unicodex/HEAD/docs/00-test-local.md -------------------------------------------------------------------------------- /docs/10-setup-gcp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/django-demo-app-unicodex/HEAD/docs/10-setup-gcp.md -------------------------------------------------------------------------------- /docs/20-setup-sql.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/django-demo-app-unicodex/HEAD/docs/20-setup-sql.md -------------------------------------------------------------------------------- /docs/30-setup-bucket.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/django-demo-app-unicodex/HEAD/docs/30-setup-bucket.md -------------------------------------------------------------------------------- /docs/40-setup-secrets.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/django-demo-app-unicodex/HEAD/docs/40-setup-secrets.md -------------------------------------------------------------------------------- /docs/50-first-deployment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/django-demo-app-unicodex/HEAD/docs/50-first-deployment.md -------------------------------------------------------------------------------- /docs/60-ongoing-deployments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/django-demo-app-unicodex/HEAD/docs/60-ongoing-deployments.md -------------------------------------------------------------------------------- /docs/70-manual-deployments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/django-demo-app-unicodex/HEAD/docs/70-manual-deployments.md -------------------------------------------------------------------------------- /docs/80-automation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/django-demo-app-unicodex/HEAD/docs/80-automation.md -------------------------------------------------------------------------------- /docs/90-cleanup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/django-demo-app-unicodex/HEAD/docs/90-cleanup.md -------------------------------------------------------------------------------- /docs/yy_styleguide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/django-demo-app-unicodex/HEAD/docs/yy_styleguide.md -------------------------------------------------------------------------------- /docs/zz_debugging.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/django-demo-app-unicodex/HEAD/docs/zz_debugging.md -------------------------------------------------------------------------------- /experimental/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/django-demo-app-unicodex/HEAD/experimental/README.md -------------------------------------------------------------------------------- /experimental/button_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/django-demo-app-unicodex/HEAD/experimental/button_test.yaml -------------------------------------------------------------------------------- /experimental/cleanup.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/django-demo-app-unicodex/HEAD/experimental/cleanup.yaml -------------------------------------------------------------------------------- /experimental/cloudbuild.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/django-demo-app-unicodex/HEAD/experimental/cloudbuild.yaml -------------------------------------------------------------------------------- /experimental/gen_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/django-demo-app-unicodex/HEAD/experimental/gen_test.yaml -------------------------------------------------------------------------------- /experimental/nested.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/django-demo-app-unicodex/HEAD/experimental/nested.yaml -------------------------------------------------------------------------------- /experimental/project_setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/django-demo-app-unicodex/HEAD/experimental/project_setup.sh -------------------------------------------------------------------------------- /experimental/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/django-demo-app-unicodex/HEAD/experimental/setup.sh -------------------------------------------------------------------------------- /experimental/terraform_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/django-demo-app-unicodex/HEAD/experimental/terraform_test.yaml -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/django-demo-app-unicodex/HEAD/manage.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/django-demo-app-unicodex/HEAD/requirements.txt -------------------------------------------------------------------------------- /terraform/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/django-demo-app-unicodex/HEAD/terraform/.gitignore -------------------------------------------------------------------------------- /terraform/bucket.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/django-demo-app-unicodex/HEAD/terraform/bucket.tf -------------------------------------------------------------------------------- /terraform/database.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/django-demo-app-unicodex/HEAD/terraform/database.tf -------------------------------------------------------------------------------- /terraform/etc/env.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/django-demo-app-unicodex/HEAD/terraform/etc/env.tpl -------------------------------------------------------------------------------- /terraform/etc/get_image_digest.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/django-demo-app-unicodex/HEAD/terraform/etc/get_image_digest.sh -------------------------------------------------------------------------------- /terraform/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/django-demo-app-unicodex/HEAD/terraform/main.tf -------------------------------------------------------------------------------- /terraform/output.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/django-demo-app-unicodex/HEAD/terraform/output.tf -------------------------------------------------------------------------------- /terraform/project_services.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/django-demo-app-unicodex/HEAD/terraform/project_services.tf -------------------------------------------------------------------------------- /terraform/secrets.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/django-demo-app-unicodex/HEAD/terraform/secrets.tf -------------------------------------------------------------------------------- /terraform/service.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/django-demo-app-unicodex/HEAD/terraform/service.tf -------------------------------------------------------------------------------- /terraform/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/django-demo-app-unicodex/HEAD/terraform/variables.tf -------------------------------------------------------------------------------- /unicodex/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/django-demo-app-unicodex/HEAD/unicodex/__init__.py -------------------------------------------------------------------------------- /unicodex/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/django-demo-app-unicodex/HEAD/unicodex/admin.py -------------------------------------------------------------------------------- /unicodex/fixtures/sampledata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/django-demo-app-unicodex/HEAD/unicodex/fixtures/sampledata.yaml -------------------------------------------------------------------------------- /unicodex/management/commands/import_emoji.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/django-demo-app-unicodex/HEAD/unicodex/management/commands/import_emoji.py -------------------------------------------------------------------------------- /unicodex/management/commands/import_from_vendor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/django-demo-app-unicodex/HEAD/unicodex/management/commands/import_from_vendor.py -------------------------------------------------------------------------------- /unicodex/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/django-demo-app-unicodex/HEAD/unicodex/migrations/0001_initial.py -------------------------------------------------------------------------------- /unicodex/migrations/0002_create_superuser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/django-demo-app-unicodex/HEAD/unicodex/migrations/0002_create_superuser.py -------------------------------------------------------------------------------- /unicodex/migrations/0003_codepoint_order.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/django-demo-app-unicodex/HEAD/unicodex/migrations/0003_codepoint_order.py -------------------------------------------------------------------------------- /unicodex/migrations/0004_auto_20200922_2216.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/django-demo-app-unicodex/HEAD/unicodex/migrations/0004_auto_20200922_2216.py -------------------------------------------------------------------------------- /unicodex/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /unicodex/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/django-demo-app-unicodex/HEAD/unicodex/models.py -------------------------------------------------------------------------------- /unicodex/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/django-demo-app-unicodex/HEAD/unicodex/settings.py -------------------------------------------------------------------------------- /unicodex/static/css/normalize.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/django-demo-app-unicodex/HEAD/unicodex/static/css/normalize.css -------------------------------------------------------------------------------- /unicodex/static/css/skeleton.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/django-demo-app-unicodex/HEAD/unicodex/static/css/skeleton.css -------------------------------------------------------------------------------- /unicodex/static/css/unicodex.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/django-demo-app-unicodex/HEAD/unicodex/static/css/unicodex.css -------------------------------------------------------------------------------- /unicodex/templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/django-demo-app-unicodex/HEAD/unicodex/templates/base.html -------------------------------------------------------------------------------- /unicodex/templates/codepoint.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/django-demo-app-unicodex/HEAD/unicodex/templates/codepoint.html -------------------------------------------------------------------------------- /unicodex/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/django-demo-app-unicodex/HEAD/unicodex/templates/index.html -------------------------------------------------------------------------------- /unicodex/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/django-demo-app-unicodex/HEAD/unicodex/tests.py -------------------------------------------------------------------------------- /unicodex/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/django-demo-app-unicodex/HEAD/unicodex/urls.py -------------------------------------------------------------------------------- /unicodex/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/django-demo-app-unicodex/HEAD/unicodex/views.py -------------------------------------------------------------------------------- /unicodex/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/django-demo-app-unicodex/HEAD/unicodex/wsgi.py --------------------------------------------------------------------------------