├── .editorconfig ├── .env.example ├── .gitignore ├── CONTRIBUTING.md ├── LICENSE.txt ├── Makefile ├── README.md ├── architecture.png ├── backend ├── Dockerfile ├── README.md ├── __init__.py ├── apps │ ├── __init__.py │ ├── arranges │ │ ├── __init__.py │ │ ├── apps.py │ │ ├── migrations │ │ │ ├── 0001_initial.py │ │ │ ├── 0002_arrange_case.py │ │ │ ├── 0003_auto_20200303_2205.py │ │ │ └── __init__.py │ │ ├── models.py │ │ ├── serializers.py │ │ ├── tests.py │ │ └── views.py │ ├── cases │ │ ├── __init__.py │ │ ├── admin.py │ │ ├── apps.py │ │ ├── filters.py │ │ ├── insights.py │ │ ├── management │ │ │ ├── __init__.py │ │ │ └── commands │ │ │ │ ├── __init__.py │ │ │ │ └── cache_insights.py │ │ ├── migrations │ │ │ ├── 0001_initial.py │ │ │ ├── 0002_auto_20190122_2131.py │ │ │ ├── 0003_auto_20190226_1138.py │ │ │ ├── 0004_auto_20190226_1439.py │ │ │ ├── 0005_auto_20190326_1917.py │ │ │ └── __init__.py │ │ ├── models.py │ │ ├── schemas.py │ │ ├── serializers.py │ │ ├── signals.py │ │ ├── slack.py │ │ ├── templates │ │ │ ├── case_history_list.html │ │ │ └── sendgrid_mail_list.html │ │ ├── tests.py │ │ ├── views.py │ │ └── widgets.py │ ├── files │ │ ├── __init__.py │ │ ├── admin.py │ │ ├── apps.py │ │ ├── migrations │ │ │ ├── 0001_initial.py │ │ │ ├── 0002_auto_20190226_1138.py │ │ │ └── __init__.py │ │ ├── models.py │ │ ├── serializers.py │ │ ├── signals.py │ │ ├── storages │ │ │ ├── __init__.py │ │ │ ├── gcloud.py │ │ │ └── local.py │ │ ├── test.txt │ │ ├── tests.py │ │ └── views.py │ ├── mails │ │ ├── __init__.py │ │ ├── admin.py │ │ ├── apps.py │ │ ├── migrations │ │ │ ├── 0001_initial.py │ │ │ ├── 0002_auto_20190122_2131.py │ │ │ └── __init__.py │ │ ├── models.py │ │ ├── serializers.py │ │ ├── tests.py │ │ ├── utils.py │ │ └── views.py │ ├── marquees │ │ ├── __init__.py │ │ ├── admin.py │ │ ├── apps.py │ │ ├── migrations │ │ │ ├── 0001_initial.py │ │ │ ├── 0002_auto_20200303_2205.py │ │ │ └── __init__.py │ │ ├── models.py │ │ ├── serializers.py │ │ └── views.py │ └── users │ │ ├── __init__.py │ │ ├── admin.py │ │ ├── apps.py │ │ ├── authentication.py │ │ ├── forms.py │ │ ├── management │ │ └── commands │ │ │ └── init_superuser.py │ │ ├── migrations │ │ ├── 0001_initial.py │ │ └── __init__.py │ │ ├── models.py │ │ ├── tests │ │ ├── __init__.py │ │ └── tests.py │ │ ├── utils.py │ │ └── views.py ├── config │ ├── __init__.py │ ├── api.py │ ├── auth.py │ ├── boxes.py │ ├── charts.py │ ├── middlewares.py │ ├── settings.py │ ├── site.py │ ├── storages.py │ ├── urls.py │ ├── views.py │ └── wsgi.py ├── fixtures │ ├── arranges │ │ ├── arrange.test.yaml │ │ └── arranges.test.yaml │ ├── cases │ │ ├── case.test.yaml │ │ ├── cases.test.yaml │ │ ├── region.yaml │ │ └── type.yaml │ ├── mails │ │ └── sendgrid-template.yaml │ ├── marquees │ │ └── marquee.yaml │ └── site.yaml ├── locale │ └── zh_Hant │ │ └── LC_MESSAGES │ │ └── django.po ├── manage.py ├── requirements.txt ├── scripts │ ├── entrypoint.sh │ ├── gunicorn.sh │ └── start.sh ├── static │ ├── .gitkeep │ ├── highcharts │ │ ├── highcharts-more.js │ │ ├── highcharts.js │ │ └── wordcloud.js │ └── jieba │ │ ├── dict.txt │ │ └── stop.txt └── templates │ ├── admin │ ├── actions.html │ ├── base_site.html │ └── change_form.html │ ├── fsm_admin │ ├── fsm_submit_button_suit.html │ └── fsm_submit_line_suit.html │ ├── highchart.html │ └── main.html ├── cloudbuild.deploy.yaml ├── cloudbuild.dockerhub.yaml ├── cloudbuild.yaml ├── docker-compose.yml ├── frontend ├── .env ├── README.md ├── babel.config.js ├── package-lock.json ├── package.json ├── public │ ├── img │ │ └── icons │ │ │ ├── android-chrome-192x192.png │ │ │ ├── android-chrome-512x512.png │ │ │ ├── apple-touch-icon-120x120.png │ │ │ ├── apple-touch-icon-152x152.png │ │ │ ├── apple-touch-icon-180x180.png │ │ │ ├── apple-touch-icon-60x60.png │ │ │ ├── apple-touch-icon-76x76.png │ │ │ ├── apple-touch-icon.png │ │ │ ├── favicon-16x16.png │ │ │ ├── favicon-32x32.png │ │ │ ├── msapplication-icon-144x144.png │ │ │ ├── mstile-150x150.png │ │ │ └── safari-pinned-tab.svg │ ├── index.html │ ├── manifest.json │ └── robots.txt ├── src │ ├── App.vue │ ├── assets │ │ ├── css │ │ │ └── style.sass │ │ └── images │ │ │ └── loading.gif │ ├── components │ │ ├── About.vue │ │ ├── AgreementModal.vue │ │ ├── AuthModal.vue │ │ ├── BottomGameDialog.vue │ │ ├── CardDetail.vue │ │ ├── CarouselCards.vue │ │ ├── CaseList.vue │ │ ├── Dialogue.vue │ │ ├── InputCase.vue │ │ ├── InputUserInfo.vue │ │ ├── SvgMap.vue │ │ ├── TextMarquee.vue │ │ ├── ThemeSong.vue │ │ └── Workflow.vue │ ├── main.js │ ├── router.js │ ├── store.js │ └── views │ │ ├── AboutPage.vue │ │ ├── CaseListPage.vue │ │ ├── Home.vue │ │ └── InputDialogPage.vue ├── tests │ └── unit │ │ └── .eslintrc.js └── vue.config.js ├── helm └── froggy-service │ ├── .env.prod.enc │ ├── .env.staging.enc │ ├── .helmignore │ ├── Chart.yaml │ ├── README.md │ ├── secret │ ├── default-sa.json.enc │ └── firebase-sa.json.enc │ ├── templates │ ├── _helpers.tpl │ ├── backend │ │ ├── autoscaler.yaml │ │ ├── deployment.yaml │ │ └── service.yaml │ ├── cronjob │ │ └── django_command_job.yaml │ ├── env-secret.yaml │ ├── frontend │ │ ├── deployment.yaml │ │ └── service.yaml │ ├── ingress.yaml │ ├── redis │ │ ├── service.yaml │ │ └── statefulset.yaml │ └── sa-secret.yaml │ ├── values.prod.yaml.enc │ ├── values.staging.yaml.enc │ └── values.yaml ├── jsconfig.json └── nginx ├── Dockerfile ├── default.conf └── dev.conf /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FroggyTaipei/froggy-service/HEAD/.editorconfig -------------------------------------------------------------------------------- /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FroggyTaipei/froggy-service/HEAD/.env.example -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FroggyTaipei/froggy-service/HEAD/.gitignore -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FroggyTaipei/froggy-service/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FroggyTaipei/froggy-service/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FroggyTaipei/froggy-service/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FroggyTaipei/froggy-service/HEAD/README.md -------------------------------------------------------------------------------- /architecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FroggyTaipei/froggy-service/HEAD/architecture.png -------------------------------------------------------------------------------- /backend/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FroggyTaipei/froggy-service/HEAD/backend/Dockerfile -------------------------------------------------------------------------------- /backend/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FroggyTaipei/froggy-service/HEAD/backend/README.md -------------------------------------------------------------------------------- /backend/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/apps/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/apps/arranges/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/apps/arranges/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FroggyTaipei/froggy-service/HEAD/backend/apps/arranges/apps.py -------------------------------------------------------------------------------- /backend/apps/arranges/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FroggyTaipei/froggy-service/HEAD/backend/apps/arranges/migrations/0001_initial.py -------------------------------------------------------------------------------- /backend/apps/arranges/migrations/0002_arrange_case.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FroggyTaipei/froggy-service/HEAD/backend/apps/arranges/migrations/0002_arrange_case.py -------------------------------------------------------------------------------- /backend/apps/arranges/migrations/0003_auto_20200303_2205.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FroggyTaipei/froggy-service/HEAD/backend/apps/arranges/migrations/0003_auto_20200303_2205.py -------------------------------------------------------------------------------- /backend/apps/arranges/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/apps/arranges/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FroggyTaipei/froggy-service/HEAD/backend/apps/arranges/models.py -------------------------------------------------------------------------------- /backend/apps/arranges/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FroggyTaipei/froggy-service/HEAD/backend/apps/arranges/serializers.py -------------------------------------------------------------------------------- /backend/apps/arranges/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FroggyTaipei/froggy-service/HEAD/backend/apps/arranges/tests.py -------------------------------------------------------------------------------- /backend/apps/arranges/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FroggyTaipei/froggy-service/HEAD/backend/apps/arranges/views.py -------------------------------------------------------------------------------- /backend/apps/cases/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/apps/cases/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FroggyTaipei/froggy-service/HEAD/backend/apps/cases/admin.py -------------------------------------------------------------------------------- /backend/apps/cases/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FroggyTaipei/froggy-service/HEAD/backend/apps/cases/apps.py -------------------------------------------------------------------------------- /backend/apps/cases/filters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FroggyTaipei/froggy-service/HEAD/backend/apps/cases/filters.py -------------------------------------------------------------------------------- /backend/apps/cases/insights.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FroggyTaipei/froggy-service/HEAD/backend/apps/cases/insights.py -------------------------------------------------------------------------------- /backend/apps/cases/management/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/apps/cases/management/commands/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/apps/cases/management/commands/cache_insights.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FroggyTaipei/froggy-service/HEAD/backend/apps/cases/management/commands/cache_insights.py -------------------------------------------------------------------------------- /backend/apps/cases/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FroggyTaipei/froggy-service/HEAD/backend/apps/cases/migrations/0001_initial.py -------------------------------------------------------------------------------- /backend/apps/cases/migrations/0002_auto_20190122_2131.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FroggyTaipei/froggy-service/HEAD/backend/apps/cases/migrations/0002_auto_20190122_2131.py -------------------------------------------------------------------------------- /backend/apps/cases/migrations/0003_auto_20190226_1138.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FroggyTaipei/froggy-service/HEAD/backend/apps/cases/migrations/0003_auto_20190226_1138.py -------------------------------------------------------------------------------- /backend/apps/cases/migrations/0004_auto_20190226_1439.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FroggyTaipei/froggy-service/HEAD/backend/apps/cases/migrations/0004_auto_20190226_1439.py -------------------------------------------------------------------------------- /backend/apps/cases/migrations/0005_auto_20190326_1917.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FroggyTaipei/froggy-service/HEAD/backend/apps/cases/migrations/0005_auto_20190326_1917.py -------------------------------------------------------------------------------- /backend/apps/cases/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/apps/cases/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FroggyTaipei/froggy-service/HEAD/backend/apps/cases/models.py -------------------------------------------------------------------------------- /backend/apps/cases/schemas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FroggyTaipei/froggy-service/HEAD/backend/apps/cases/schemas.py -------------------------------------------------------------------------------- /backend/apps/cases/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FroggyTaipei/froggy-service/HEAD/backend/apps/cases/serializers.py -------------------------------------------------------------------------------- /backend/apps/cases/signals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FroggyTaipei/froggy-service/HEAD/backend/apps/cases/signals.py -------------------------------------------------------------------------------- /backend/apps/cases/slack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FroggyTaipei/froggy-service/HEAD/backend/apps/cases/slack.py -------------------------------------------------------------------------------- /backend/apps/cases/templates/case_history_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FroggyTaipei/froggy-service/HEAD/backend/apps/cases/templates/case_history_list.html -------------------------------------------------------------------------------- /backend/apps/cases/templates/sendgrid_mail_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FroggyTaipei/froggy-service/HEAD/backend/apps/cases/templates/sendgrid_mail_list.html -------------------------------------------------------------------------------- /backend/apps/cases/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FroggyTaipei/froggy-service/HEAD/backend/apps/cases/tests.py -------------------------------------------------------------------------------- /backend/apps/cases/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FroggyTaipei/froggy-service/HEAD/backend/apps/cases/views.py -------------------------------------------------------------------------------- /backend/apps/cases/widgets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FroggyTaipei/froggy-service/HEAD/backend/apps/cases/widgets.py -------------------------------------------------------------------------------- /backend/apps/files/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/apps/files/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FroggyTaipei/froggy-service/HEAD/backend/apps/files/admin.py -------------------------------------------------------------------------------- /backend/apps/files/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FroggyTaipei/froggy-service/HEAD/backend/apps/files/apps.py -------------------------------------------------------------------------------- /backend/apps/files/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FroggyTaipei/froggy-service/HEAD/backend/apps/files/migrations/0001_initial.py -------------------------------------------------------------------------------- /backend/apps/files/migrations/0002_auto_20190226_1138.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FroggyTaipei/froggy-service/HEAD/backend/apps/files/migrations/0002_auto_20190226_1138.py -------------------------------------------------------------------------------- /backend/apps/files/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/apps/files/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FroggyTaipei/froggy-service/HEAD/backend/apps/files/models.py -------------------------------------------------------------------------------- /backend/apps/files/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FroggyTaipei/froggy-service/HEAD/backend/apps/files/serializers.py -------------------------------------------------------------------------------- /backend/apps/files/signals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FroggyTaipei/froggy-service/HEAD/backend/apps/files/signals.py -------------------------------------------------------------------------------- /backend/apps/files/storages/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FroggyTaipei/froggy-service/HEAD/backend/apps/files/storages/__init__.py -------------------------------------------------------------------------------- /backend/apps/files/storages/gcloud.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FroggyTaipei/froggy-service/HEAD/backend/apps/files/storages/gcloud.py -------------------------------------------------------------------------------- /backend/apps/files/storages/local.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FroggyTaipei/froggy-service/HEAD/backend/apps/files/storages/local.py -------------------------------------------------------------------------------- /backend/apps/files/test.txt: -------------------------------------------------------------------------------- 1 | For filefied testing. 2 | -------------------------------------------------------------------------------- /backend/apps/files/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FroggyTaipei/froggy-service/HEAD/backend/apps/files/tests.py -------------------------------------------------------------------------------- /backend/apps/files/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FroggyTaipei/froggy-service/HEAD/backend/apps/files/views.py -------------------------------------------------------------------------------- /backend/apps/mails/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/apps/mails/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FroggyTaipei/froggy-service/HEAD/backend/apps/mails/admin.py -------------------------------------------------------------------------------- /backend/apps/mails/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FroggyTaipei/froggy-service/HEAD/backend/apps/mails/apps.py -------------------------------------------------------------------------------- /backend/apps/mails/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FroggyTaipei/froggy-service/HEAD/backend/apps/mails/migrations/0001_initial.py -------------------------------------------------------------------------------- /backend/apps/mails/migrations/0002_auto_20190122_2131.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FroggyTaipei/froggy-service/HEAD/backend/apps/mails/migrations/0002_auto_20190122_2131.py -------------------------------------------------------------------------------- /backend/apps/mails/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/apps/mails/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FroggyTaipei/froggy-service/HEAD/backend/apps/mails/models.py -------------------------------------------------------------------------------- /backend/apps/mails/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FroggyTaipei/froggy-service/HEAD/backend/apps/mails/serializers.py -------------------------------------------------------------------------------- /backend/apps/mails/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FroggyTaipei/froggy-service/HEAD/backend/apps/mails/tests.py -------------------------------------------------------------------------------- /backend/apps/mails/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FroggyTaipei/froggy-service/HEAD/backend/apps/mails/utils.py -------------------------------------------------------------------------------- /backend/apps/mails/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FroggyTaipei/froggy-service/HEAD/backend/apps/mails/views.py -------------------------------------------------------------------------------- /backend/apps/marquees/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/apps/marquees/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FroggyTaipei/froggy-service/HEAD/backend/apps/marquees/admin.py -------------------------------------------------------------------------------- /backend/apps/marquees/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FroggyTaipei/froggy-service/HEAD/backend/apps/marquees/apps.py -------------------------------------------------------------------------------- /backend/apps/marquees/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FroggyTaipei/froggy-service/HEAD/backend/apps/marquees/migrations/0001_initial.py -------------------------------------------------------------------------------- /backend/apps/marquees/migrations/0002_auto_20200303_2205.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FroggyTaipei/froggy-service/HEAD/backend/apps/marquees/migrations/0002_auto_20200303_2205.py -------------------------------------------------------------------------------- /backend/apps/marquees/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/apps/marquees/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FroggyTaipei/froggy-service/HEAD/backend/apps/marquees/models.py -------------------------------------------------------------------------------- /backend/apps/marquees/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FroggyTaipei/froggy-service/HEAD/backend/apps/marquees/serializers.py -------------------------------------------------------------------------------- /backend/apps/marquees/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FroggyTaipei/froggy-service/HEAD/backend/apps/marquees/views.py -------------------------------------------------------------------------------- /backend/apps/users/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/apps/users/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FroggyTaipei/froggy-service/HEAD/backend/apps/users/admin.py -------------------------------------------------------------------------------- /backend/apps/users/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FroggyTaipei/froggy-service/HEAD/backend/apps/users/apps.py -------------------------------------------------------------------------------- /backend/apps/users/authentication.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FroggyTaipei/froggy-service/HEAD/backend/apps/users/authentication.py -------------------------------------------------------------------------------- /backend/apps/users/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FroggyTaipei/froggy-service/HEAD/backend/apps/users/forms.py -------------------------------------------------------------------------------- /backend/apps/users/management/commands/init_superuser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FroggyTaipei/froggy-service/HEAD/backend/apps/users/management/commands/init_superuser.py -------------------------------------------------------------------------------- /backend/apps/users/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FroggyTaipei/froggy-service/HEAD/backend/apps/users/migrations/0001_initial.py -------------------------------------------------------------------------------- /backend/apps/users/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/apps/users/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FroggyTaipei/froggy-service/HEAD/backend/apps/users/models.py -------------------------------------------------------------------------------- /backend/apps/users/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/apps/users/tests/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FroggyTaipei/froggy-service/HEAD/backend/apps/users/tests/tests.py -------------------------------------------------------------------------------- /backend/apps/users/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FroggyTaipei/froggy-service/HEAD/backend/apps/users/utils.py -------------------------------------------------------------------------------- /backend/apps/users/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FroggyTaipei/froggy-service/HEAD/backend/apps/users/views.py -------------------------------------------------------------------------------- /backend/config/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/config/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FroggyTaipei/froggy-service/HEAD/backend/config/api.py -------------------------------------------------------------------------------- /backend/config/auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FroggyTaipei/froggy-service/HEAD/backend/config/auth.py -------------------------------------------------------------------------------- /backend/config/boxes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FroggyTaipei/froggy-service/HEAD/backend/config/boxes.py -------------------------------------------------------------------------------- /backend/config/charts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FroggyTaipei/froggy-service/HEAD/backend/config/charts.py -------------------------------------------------------------------------------- /backend/config/middlewares.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FroggyTaipei/froggy-service/HEAD/backend/config/middlewares.py -------------------------------------------------------------------------------- /backend/config/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FroggyTaipei/froggy-service/HEAD/backend/config/settings.py -------------------------------------------------------------------------------- /backend/config/site.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FroggyTaipei/froggy-service/HEAD/backend/config/site.py -------------------------------------------------------------------------------- /backend/config/storages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FroggyTaipei/froggy-service/HEAD/backend/config/storages.py -------------------------------------------------------------------------------- /backend/config/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FroggyTaipei/froggy-service/HEAD/backend/config/urls.py -------------------------------------------------------------------------------- /backend/config/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FroggyTaipei/froggy-service/HEAD/backend/config/views.py -------------------------------------------------------------------------------- /backend/config/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FroggyTaipei/froggy-service/HEAD/backend/config/wsgi.py -------------------------------------------------------------------------------- /backend/fixtures/arranges/arrange.test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FroggyTaipei/froggy-service/HEAD/backend/fixtures/arranges/arrange.test.yaml -------------------------------------------------------------------------------- /backend/fixtures/arranges/arranges.test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FroggyTaipei/froggy-service/HEAD/backend/fixtures/arranges/arranges.test.yaml -------------------------------------------------------------------------------- /backend/fixtures/cases/case.test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FroggyTaipei/froggy-service/HEAD/backend/fixtures/cases/case.test.yaml -------------------------------------------------------------------------------- /backend/fixtures/cases/cases.test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FroggyTaipei/froggy-service/HEAD/backend/fixtures/cases/cases.test.yaml -------------------------------------------------------------------------------- /backend/fixtures/cases/region.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FroggyTaipei/froggy-service/HEAD/backend/fixtures/cases/region.yaml -------------------------------------------------------------------------------- /backend/fixtures/cases/type.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FroggyTaipei/froggy-service/HEAD/backend/fixtures/cases/type.yaml -------------------------------------------------------------------------------- /backend/fixtures/mails/sendgrid-template.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FroggyTaipei/froggy-service/HEAD/backend/fixtures/mails/sendgrid-template.yaml -------------------------------------------------------------------------------- /backend/fixtures/marquees/marquee.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FroggyTaipei/froggy-service/HEAD/backend/fixtures/marquees/marquee.yaml -------------------------------------------------------------------------------- /backend/fixtures/site.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FroggyTaipei/froggy-service/HEAD/backend/fixtures/site.yaml -------------------------------------------------------------------------------- /backend/locale/zh_Hant/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FroggyTaipei/froggy-service/HEAD/backend/locale/zh_Hant/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /backend/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FroggyTaipei/froggy-service/HEAD/backend/manage.py -------------------------------------------------------------------------------- /backend/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FroggyTaipei/froggy-service/HEAD/backend/requirements.txt -------------------------------------------------------------------------------- /backend/scripts/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FroggyTaipei/froggy-service/HEAD/backend/scripts/entrypoint.sh -------------------------------------------------------------------------------- /backend/scripts/gunicorn.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FroggyTaipei/froggy-service/HEAD/backend/scripts/gunicorn.sh -------------------------------------------------------------------------------- /backend/scripts/start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FroggyTaipei/froggy-service/HEAD/backend/scripts/start.sh -------------------------------------------------------------------------------- /backend/static/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/static/highcharts/highcharts-more.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FroggyTaipei/froggy-service/HEAD/backend/static/highcharts/highcharts-more.js -------------------------------------------------------------------------------- /backend/static/highcharts/highcharts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FroggyTaipei/froggy-service/HEAD/backend/static/highcharts/highcharts.js -------------------------------------------------------------------------------- /backend/static/highcharts/wordcloud.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FroggyTaipei/froggy-service/HEAD/backend/static/highcharts/wordcloud.js -------------------------------------------------------------------------------- /backend/static/jieba/dict.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FroggyTaipei/froggy-service/HEAD/backend/static/jieba/dict.txt -------------------------------------------------------------------------------- /backend/static/jieba/stop.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FroggyTaipei/froggy-service/HEAD/backend/static/jieba/stop.txt -------------------------------------------------------------------------------- /backend/templates/admin/actions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FroggyTaipei/froggy-service/HEAD/backend/templates/admin/actions.html -------------------------------------------------------------------------------- /backend/templates/admin/base_site.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FroggyTaipei/froggy-service/HEAD/backend/templates/admin/base_site.html -------------------------------------------------------------------------------- /backend/templates/admin/change_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FroggyTaipei/froggy-service/HEAD/backend/templates/admin/change_form.html -------------------------------------------------------------------------------- /backend/templates/fsm_admin/fsm_submit_button_suit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FroggyTaipei/froggy-service/HEAD/backend/templates/fsm_admin/fsm_submit_button_suit.html -------------------------------------------------------------------------------- /backend/templates/fsm_admin/fsm_submit_line_suit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FroggyTaipei/froggy-service/HEAD/backend/templates/fsm_admin/fsm_submit_line_suit.html -------------------------------------------------------------------------------- /backend/templates/highchart.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FroggyTaipei/froggy-service/HEAD/backend/templates/highchart.html -------------------------------------------------------------------------------- /backend/templates/main.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FroggyTaipei/froggy-service/HEAD/backend/templates/main.html -------------------------------------------------------------------------------- /cloudbuild.deploy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FroggyTaipei/froggy-service/HEAD/cloudbuild.deploy.yaml -------------------------------------------------------------------------------- /cloudbuild.dockerhub.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FroggyTaipei/froggy-service/HEAD/cloudbuild.dockerhub.yaml -------------------------------------------------------------------------------- /cloudbuild.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FroggyTaipei/froggy-service/HEAD/cloudbuild.yaml -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FroggyTaipei/froggy-service/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /frontend/.env: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /frontend/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FroggyTaipei/froggy-service/HEAD/frontend/README.md -------------------------------------------------------------------------------- /frontend/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FroggyTaipei/froggy-service/HEAD/frontend/babel.config.js -------------------------------------------------------------------------------- /frontend/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FroggyTaipei/froggy-service/HEAD/frontend/package-lock.json -------------------------------------------------------------------------------- /frontend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FroggyTaipei/froggy-service/HEAD/frontend/package.json -------------------------------------------------------------------------------- /frontend/public/img/icons/android-chrome-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FroggyTaipei/froggy-service/HEAD/frontend/public/img/icons/android-chrome-192x192.png -------------------------------------------------------------------------------- /frontend/public/img/icons/android-chrome-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FroggyTaipei/froggy-service/HEAD/frontend/public/img/icons/android-chrome-512x512.png -------------------------------------------------------------------------------- /frontend/public/img/icons/apple-touch-icon-120x120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FroggyTaipei/froggy-service/HEAD/frontend/public/img/icons/apple-touch-icon-120x120.png -------------------------------------------------------------------------------- /frontend/public/img/icons/apple-touch-icon-152x152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FroggyTaipei/froggy-service/HEAD/frontend/public/img/icons/apple-touch-icon-152x152.png -------------------------------------------------------------------------------- /frontend/public/img/icons/apple-touch-icon-180x180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FroggyTaipei/froggy-service/HEAD/frontend/public/img/icons/apple-touch-icon-180x180.png -------------------------------------------------------------------------------- /frontend/public/img/icons/apple-touch-icon-60x60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FroggyTaipei/froggy-service/HEAD/frontend/public/img/icons/apple-touch-icon-60x60.png -------------------------------------------------------------------------------- /frontend/public/img/icons/apple-touch-icon-76x76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FroggyTaipei/froggy-service/HEAD/frontend/public/img/icons/apple-touch-icon-76x76.png -------------------------------------------------------------------------------- /frontend/public/img/icons/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FroggyTaipei/froggy-service/HEAD/frontend/public/img/icons/apple-touch-icon.png -------------------------------------------------------------------------------- /frontend/public/img/icons/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FroggyTaipei/froggy-service/HEAD/frontend/public/img/icons/favicon-16x16.png -------------------------------------------------------------------------------- /frontend/public/img/icons/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FroggyTaipei/froggy-service/HEAD/frontend/public/img/icons/favicon-32x32.png -------------------------------------------------------------------------------- /frontend/public/img/icons/msapplication-icon-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FroggyTaipei/froggy-service/HEAD/frontend/public/img/icons/msapplication-icon-144x144.png -------------------------------------------------------------------------------- /frontend/public/img/icons/mstile-150x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FroggyTaipei/froggy-service/HEAD/frontend/public/img/icons/mstile-150x150.png -------------------------------------------------------------------------------- /frontend/public/img/icons/safari-pinned-tab.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FroggyTaipei/froggy-service/HEAD/frontend/public/img/icons/safari-pinned-tab.svg -------------------------------------------------------------------------------- /frontend/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FroggyTaipei/froggy-service/HEAD/frontend/public/index.html -------------------------------------------------------------------------------- /frontend/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FroggyTaipei/froggy-service/HEAD/frontend/public/manifest.json -------------------------------------------------------------------------------- /frontend/public/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: 3 | -------------------------------------------------------------------------------- /frontend/src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FroggyTaipei/froggy-service/HEAD/frontend/src/App.vue -------------------------------------------------------------------------------- /frontend/src/assets/css/style.sass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FroggyTaipei/froggy-service/HEAD/frontend/src/assets/css/style.sass -------------------------------------------------------------------------------- /frontend/src/assets/images/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FroggyTaipei/froggy-service/HEAD/frontend/src/assets/images/loading.gif -------------------------------------------------------------------------------- /frontend/src/components/About.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FroggyTaipei/froggy-service/HEAD/frontend/src/components/About.vue -------------------------------------------------------------------------------- /frontend/src/components/AgreementModal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FroggyTaipei/froggy-service/HEAD/frontend/src/components/AgreementModal.vue -------------------------------------------------------------------------------- /frontend/src/components/AuthModal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FroggyTaipei/froggy-service/HEAD/frontend/src/components/AuthModal.vue -------------------------------------------------------------------------------- /frontend/src/components/BottomGameDialog.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FroggyTaipei/froggy-service/HEAD/frontend/src/components/BottomGameDialog.vue -------------------------------------------------------------------------------- /frontend/src/components/CardDetail.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FroggyTaipei/froggy-service/HEAD/frontend/src/components/CardDetail.vue -------------------------------------------------------------------------------- /frontend/src/components/CarouselCards.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FroggyTaipei/froggy-service/HEAD/frontend/src/components/CarouselCards.vue -------------------------------------------------------------------------------- /frontend/src/components/CaseList.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FroggyTaipei/froggy-service/HEAD/frontend/src/components/CaseList.vue -------------------------------------------------------------------------------- /frontend/src/components/Dialogue.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FroggyTaipei/froggy-service/HEAD/frontend/src/components/Dialogue.vue -------------------------------------------------------------------------------- /frontend/src/components/InputCase.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FroggyTaipei/froggy-service/HEAD/frontend/src/components/InputCase.vue -------------------------------------------------------------------------------- /frontend/src/components/InputUserInfo.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FroggyTaipei/froggy-service/HEAD/frontend/src/components/InputUserInfo.vue -------------------------------------------------------------------------------- /frontend/src/components/SvgMap.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FroggyTaipei/froggy-service/HEAD/frontend/src/components/SvgMap.vue -------------------------------------------------------------------------------- /frontend/src/components/TextMarquee.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FroggyTaipei/froggy-service/HEAD/frontend/src/components/TextMarquee.vue -------------------------------------------------------------------------------- /frontend/src/components/ThemeSong.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FroggyTaipei/froggy-service/HEAD/frontend/src/components/ThemeSong.vue -------------------------------------------------------------------------------- /frontend/src/components/Workflow.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FroggyTaipei/froggy-service/HEAD/frontend/src/components/Workflow.vue -------------------------------------------------------------------------------- /frontend/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FroggyTaipei/froggy-service/HEAD/frontend/src/main.js -------------------------------------------------------------------------------- /frontend/src/router.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FroggyTaipei/froggy-service/HEAD/frontend/src/router.js -------------------------------------------------------------------------------- /frontend/src/store.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FroggyTaipei/froggy-service/HEAD/frontend/src/store.js -------------------------------------------------------------------------------- /frontend/src/views/AboutPage.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FroggyTaipei/froggy-service/HEAD/frontend/src/views/AboutPage.vue -------------------------------------------------------------------------------- /frontend/src/views/CaseListPage.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FroggyTaipei/froggy-service/HEAD/frontend/src/views/CaseListPage.vue -------------------------------------------------------------------------------- /frontend/src/views/Home.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FroggyTaipei/froggy-service/HEAD/frontend/src/views/Home.vue -------------------------------------------------------------------------------- /frontend/src/views/InputDialogPage.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FroggyTaipei/froggy-service/HEAD/frontend/src/views/InputDialogPage.vue -------------------------------------------------------------------------------- /frontend/tests/unit/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FroggyTaipei/froggy-service/HEAD/frontend/tests/unit/.eslintrc.js -------------------------------------------------------------------------------- /frontend/vue.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FroggyTaipei/froggy-service/HEAD/frontend/vue.config.js -------------------------------------------------------------------------------- /helm/froggy-service/.env.prod.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FroggyTaipei/froggy-service/HEAD/helm/froggy-service/.env.prod.enc -------------------------------------------------------------------------------- /helm/froggy-service/.env.staging.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FroggyTaipei/froggy-service/HEAD/helm/froggy-service/.env.staging.enc -------------------------------------------------------------------------------- /helm/froggy-service/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FroggyTaipei/froggy-service/HEAD/helm/froggy-service/.helmignore -------------------------------------------------------------------------------- /helm/froggy-service/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FroggyTaipei/froggy-service/HEAD/helm/froggy-service/Chart.yaml -------------------------------------------------------------------------------- /helm/froggy-service/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FroggyTaipei/froggy-service/HEAD/helm/froggy-service/README.md -------------------------------------------------------------------------------- /helm/froggy-service/secret/default-sa.json.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FroggyTaipei/froggy-service/HEAD/helm/froggy-service/secret/default-sa.json.enc -------------------------------------------------------------------------------- /helm/froggy-service/secret/firebase-sa.json.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FroggyTaipei/froggy-service/HEAD/helm/froggy-service/secret/firebase-sa.json.enc -------------------------------------------------------------------------------- /helm/froggy-service/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FroggyTaipei/froggy-service/HEAD/helm/froggy-service/templates/_helpers.tpl -------------------------------------------------------------------------------- /helm/froggy-service/templates/backend/autoscaler.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FroggyTaipei/froggy-service/HEAD/helm/froggy-service/templates/backend/autoscaler.yaml -------------------------------------------------------------------------------- /helm/froggy-service/templates/backend/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FroggyTaipei/froggy-service/HEAD/helm/froggy-service/templates/backend/deployment.yaml -------------------------------------------------------------------------------- /helm/froggy-service/templates/backend/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FroggyTaipei/froggy-service/HEAD/helm/froggy-service/templates/backend/service.yaml -------------------------------------------------------------------------------- /helm/froggy-service/templates/cronjob/django_command_job.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FroggyTaipei/froggy-service/HEAD/helm/froggy-service/templates/cronjob/django_command_job.yaml -------------------------------------------------------------------------------- /helm/froggy-service/templates/env-secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FroggyTaipei/froggy-service/HEAD/helm/froggy-service/templates/env-secret.yaml -------------------------------------------------------------------------------- /helm/froggy-service/templates/frontend/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FroggyTaipei/froggy-service/HEAD/helm/froggy-service/templates/frontend/deployment.yaml -------------------------------------------------------------------------------- /helm/froggy-service/templates/frontend/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FroggyTaipei/froggy-service/HEAD/helm/froggy-service/templates/frontend/service.yaml -------------------------------------------------------------------------------- /helm/froggy-service/templates/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FroggyTaipei/froggy-service/HEAD/helm/froggy-service/templates/ingress.yaml -------------------------------------------------------------------------------- /helm/froggy-service/templates/redis/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FroggyTaipei/froggy-service/HEAD/helm/froggy-service/templates/redis/service.yaml -------------------------------------------------------------------------------- /helm/froggy-service/templates/redis/statefulset.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FroggyTaipei/froggy-service/HEAD/helm/froggy-service/templates/redis/statefulset.yaml -------------------------------------------------------------------------------- /helm/froggy-service/templates/sa-secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FroggyTaipei/froggy-service/HEAD/helm/froggy-service/templates/sa-secret.yaml -------------------------------------------------------------------------------- /helm/froggy-service/values.prod.yaml.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FroggyTaipei/froggy-service/HEAD/helm/froggy-service/values.prod.yaml.enc -------------------------------------------------------------------------------- /helm/froggy-service/values.staging.yaml.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FroggyTaipei/froggy-service/HEAD/helm/froggy-service/values.staging.yaml.enc -------------------------------------------------------------------------------- /helm/froggy-service/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FroggyTaipei/froggy-service/HEAD/helm/froggy-service/values.yaml -------------------------------------------------------------------------------- /jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FroggyTaipei/froggy-service/HEAD/jsconfig.json -------------------------------------------------------------------------------- /nginx/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FroggyTaipei/froggy-service/HEAD/nginx/Dockerfile -------------------------------------------------------------------------------- /nginx/default.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FroggyTaipei/froggy-service/HEAD/nginx/default.conf -------------------------------------------------------------------------------- /nginx/dev.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FroggyTaipei/froggy-service/HEAD/nginx/dev.conf --------------------------------------------------------------------------------