├── .pre-commit-config.yaml ├── .codeclimate.yml ├── .dockerignore ├── .env-example ├── .gitignore ├── .gitlab-ci-upgrade-geoserver.yml ├── .gitlab-ci.yml ├── CHANGELOG.md ├── LICENSE ├── Makefile ├── README.md ├── devops ├── docker │ ├── local │ │ ├── geoserver │ │ │ ├── Dockerfile │ │ │ ├── fonts │ │ │ │ └── .gitkeep │ │ │ └── icons │ │ │ │ ├── construction_32.png │ │ │ │ ├── elevator.png │ │ │ │ ├── entrance_32px.png │ │ │ │ ├── stairs_32.png │ │ │ │ ├── wc_32.png │ │ │ │ ├── wc_damen_32.png │ │ │ │ ├── wc_damen_herren.png │ │ │ │ ├── wc_herren_32.png │ │ │ │ ├── wc_personal.png │ │ │ │ ├── wc_wheelchair_24.png │ │ │ │ ├── wc_wheelchair_damen.png │ │ │ │ └── wc_wheelchair_herren.png │ │ ├── indrz_api │ │ │ ├── Dockerfile │ │ │ ├── db_init.sql │ │ │ └── entrypoint.sh │ │ └── nginx │ │ │ ├── Dockerfile │ │ │ └── conf │ │ │ └── default-dev.conf │ └── production │ │ ├── geoserver │ │ ├── Dockerfile │ │ ├── fonts │ │ │ └── .gitkeep │ │ └── icons │ │ │ ├── construction_32.png │ │ │ ├── elevator.png │ │ │ ├── entrance_32px.png │ │ │ ├── stairs_32.png │ │ │ ├── wc_32.png │ │ │ ├── wc_damen_32.png │ │ │ ├── wc_damen_herren.png │ │ │ ├── wc_herren_32.png │ │ │ ├── wc_personal.png │ │ │ ├── wc_wheelchair_24.png │ │ │ ├── wc_wheelchair_damen.png │ │ │ └── wc_wheelchair_herren.png │ │ ├── indrz_api │ │ ├── Dockerfile │ │ └── entrypoint.sh │ │ └── nginx │ │ ├── Dockerfile │ │ └── conf │ │ ├── allowed.conf │ │ ├── default-dev.conf │ │ ├── default-prod.conf │ │ └── locations.conf └── k8 │ ├── deploy.yaml │ ├── ingress.yaml │ ├── pvc.yaml │ ├── readme.md │ ├── secret.yaml │ └── service.yaml ├── docker-compose-local.yml ├── docker-compose-prod.yml ├── docker-compose-production.yml ├── docs ├── .npmignore ├── package.json └── src │ ├── .vuepress │ ├── components │ │ ├── Foo │ │ │ └── Bar.vue │ │ ├── OtherComponent.vue │ │ └── demo-component.vue │ ├── config.js │ ├── enhanceApp.js │ └── styles │ │ ├── index.styl │ │ └── palette.styl │ ├── config │ ├── README.md │ └── docker-setup.md │ ├── contact │ └── README.md │ ├── guide │ ├── README.md │ ├── backend-setup.md │ ├── frontend-setup.md │ └── release-process.md │ ├── index.md │ ├── overview │ └── README.md │ └── sales │ └── README.md ├── indrz ├── .env.example ├── .initialized ├── AUTHORS.md ├── MANIFEST.in ├── __init__.py ├── api │ ├── __init__.py │ ├── admin.py │ ├── models.py │ ├── search.py │ ├── share.py │ ├── share_urls.py │ ├── urls.py │ └── views.py ├── buildings │ ├── __init__.py │ ├── admin.py │ ├── api.py │ ├── fixtures │ │ ├── building_floors.json │ │ ├── building_spaces.json │ │ ├── building_wings.json │ │ ├── buildings.json │ │ ├── campus.json │ │ └── initial_ltspacetype_data.json │ ├── management │ │ ├── __init__.py │ │ └── commands │ │ │ ├── __init__.py │ │ │ ├── admin_user_exists.py │ │ │ └── delete_building.py │ ├── migrations │ │ ├── 0001_initial.py │ │ ├── 0002_wing.py │ │ ├── 0003_auto_20191018_0739.py │ │ ├── 0004_buildingfloor_floor_name.py │ │ ├── 0005_auto_20191113_2015.py │ │ ├── 0006_buildingfloorspace_tags.py │ │ ├── 0007_buildingfloorplanline_tags.py │ │ ├── 0008_auto_20191208_0919.py │ │ ├── 0009_interiorfloorsection_tags.py │ │ ├── 0010_buildingfloor_tags.py │ │ ├── 0011_auto_20210829_2133.py │ │ ├── 0012_campus_sort_order.py │ │ ├── 0013_auto_20210910_0945.py │ │ ├── 0014_auto_20230117_1539.py │ │ ├── 0015_buildingfloor_name_de_buildingfloor_name_en_and_more.py │ │ ├── 0016_remove_building_fk_campus_and_more.py │ │ └── __init__.py │ ├── models.py │ ├── serializers.py │ ├── tests.py │ ├── urls.py │ ├── validators.py │ └── views.py ├── campus │ ├── __init__.py │ ├── admin.py │ ├── api.py │ ├── apps.py │ ├── migrations │ │ ├── 0001_initial.py │ │ └── __init__.py │ ├── models.py │ ├── serializers.py │ ├── tests.py │ └── views.py ├── custom_config.py ├── health │ ├── __init__.py │ ├── apps.py │ ├── urls.py │ └── views.py ├── indrz │ ├── __init__.py │ ├── routers.py │ ├── urls.py │ └── wsgi.py ├── landscape │ ├── __init__.py │ ├── admin.py │ ├── fixtures │ │ └── initial_ltsurfacetype_data.json │ ├── models.py │ └── views.py ├── load_data.sh ├── manage.py ├── media │ └── poi_icons │ │ ├── active_default_blue_pin.png │ │ └── inactive_default_grey_pin.png ├── organizations │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── fixtures │ │ └── organization.json │ ├── migrations │ │ ├── 0001_initial.py │ │ ├── 0002_department.py │ │ └── __init__.py │ ├── models.py │ ├── tests.py │ └── views.py ├── poi_manager │ ├── __init__.py │ ├── admin.py │ ├── api.py │ ├── fixtures │ │ ├── initial_poi.json │ │ ├── initial_poi_categories.json │ │ └── initial_poi_icons.json │ ├── forms.py │ ├── migrations │ │ ├── 0001_initial.py │ │ ├── 0002_poi_floor_name.py │ │ ├── 0003_auto_20191018_0832.py │ │ ├── 0004_auto_20191113_1843.py │ │ ├── 0005_remove_poi_fk_campus.py │ │ ├── 0006_poi_fk_campus.py │ │ ├── 0007_auto_20191122_0739.py │ │ ├── 0008_auto_20191122_0744.py │ │ ├── 0009_auto_20191122_0802.py │ │ ├── 0010_auto_20191122_0805.py │ │ ├── 0011_auto_20191207_1744.py │ │ ├── 0012_auto_20191207_1907.py │ │ ├── 0013_auto_20210106_1127.py │ │ ├── 0014_auto_20210829_1249.py │ │ ├── 0015_poicategory_html_field.py │ │ ├── 0016_auto_20210909_1927.py │ │ ├── 0017_auto_20210909_1929.py │ │ ├── 0018_poiimages.py │ │ ├── 0019_auto_20230117_1539.py │ │ ├── 0020_alter_poiimages_options_and_more.py │ │ └── __init__.py │ ├── models.py │ ├── serializers.py │ ├── tests.py │ ├── urls.py │ ├── views.py │ └── viewsets.py ├── pytest.ini ├── requirements │ ├── base.txt │ ├── local.txt │ ├── production.txt │ ├── requirements.txt │ ├── requirements_dev.txt │ └── requirements_production.txt ├── routing │ ├── __init__.py │ ├── admin.py │ ├── api.py │ ├── models.py │ ├── readme.md │ ├── route_utils.py │ ├── routing_node_networklines.py │ ├── urls.py │ ├── utils.py │ └── views.py ├── settings │ ├── __init__.py │ ├── production.py │ └── settings.py ├── setup.cfg ├── setup.py ├── templates │ └── __init__.py ├── tests │ ├── .gitkeep │ └── __init__.py ├── tox.ini ├── users │ ├── __init__.py │ ├── admin.py │ ├── api.py │ ├── apps.py │ ├── factories.py │ ├── migrations │ │ ├── 0001_initial.py │ │ ├── 0002_auto_20190908_0844.py │ │ ├── 0003_auto_20190908_1128.py │ │ ├── 0004_auto_20210220_2030.py │ │ ├── 0005_alter_user_id.py │ │ ├── 0006_alter_user_options_alter_user_managers_and_more.py │ │ └── __init__.py │ ├── models.py │ ├── routers.py │ ├── serializers.py │ ├── tests.py │ ├── urls.py │ ├── utils.py │ └── views.py └── wsgi.py └── version.txt / .pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrz/indrz-be/HEAD/ .pre-commit-config.yaml -------------------------------------------------------------------------------- /.codeclimate.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrz/indrz-be/HEAD/.codeclimate.yml -------------------------------------------------------------------------------- /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrz/indrz-be/HEAD/.dockerignore -------------------------------------------------------------------------------- /.env-example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrz/indrz-be/HEAD/.env-example -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrz/indrz-be/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitlab-ci-upgrade-geoserver.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrz/indrz-be/HEAD/.gitlab-ci-upgrade-geoserver.yml -------------------------------------------------------------------------------- /.gitlab-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrz/indrz-be/HEAD/.gitlab-ci.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrz/indrz-be/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrz/indrz-be/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrz/indrz-be/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrz/indrz-be/HEAD/README.md -------------------------------------------------------------------------------- /devops/docker/local/geoserver/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrz/indrz-be/HEAD/devops/docker/local/geoserver/Dockerfile -------------------------------------------------------------------------------- /devops/docker/local/geoserver/fonts/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /devops/docker/local/geoserver/icons/construction_32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrz/indrz-be/HEAD/devops/docker/local/geoserver/icons/construction_32.png -------------------------------------------------------------------------------- /devops/docker/local/geoserver/icons/elevator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrz/indrz-be/HEAD/devops/docker/local/geoserver/icons/elevator.png -------------------------------------------------------------------------------- /devops/docker/local/geoserver/icons/entrance_32px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrz/indrz-be/HEAD/devops/docker/local/geoserver/icons/entrance_32px.png -------------------------------------------------------------------------------- /devops/docker/local/geoserver/icons/stairs_32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrz/indrz-be/HEAD/devops/docker/local/geoserver/icons/stairs_32.png -------------------------------------------------------------------------------- /devops/docker/local/geoserver/icons/wc_32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrz/indrz-be/HEAD/devops/docker/local/geoserver/icons/wc_32.png -------------------------------------------------------------------------------- /devops/docker/local/geoserver/icons/wc_damen_32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrz/indrz-be/HEAD/devops/docker/local/geoserver/icons/wc_damen_32.png -------------------------------------------------------------------------------- /devops/docker/local/geoserver/icons/wc_damen_herren.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrz/indrz-be/HEAD/devops/docker/local/geoserver/icons/wc_damen_herren.png -------------------------------------------------------------------------------- /devops/docker/local/geoserver/icons/wc_herren_32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrz/indrz-be/HEAD/devops/docker/local/geoserver/icons/wc_herren_32.png -------------------------------------------------------------------------------- /devops/docker/local/geoserver/icons/wc_personal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrz/indrz-be/HEAD/devops/docker/local/geoserver/icons/wc_personal.png -------------------------------------------------------------------------------- /devops/docker/local/geoserver/icons/wc_wheelchair_24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrz/indrz-be/HEAD/devops/docker/local/geoserver/icons/wc_wheelchair_24.png -------------------------------------------------------------------------------- /devops/docker/local/geoserver/icons/wc_wheelchair_damen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrz/indrz-be/HEAD/devops/docker/local/geoserver/icons/wc_wheelchair_damen.png -------------------------------------------------------------------------------- /devops/docker/local/geoserver/icons/wc_wheelchair_herren.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrz/indrz-be/HEAD/devops/docker/local/geoserver/icons/wc_wheelchair_herren.png -------------------------------------------------------------------------------- /devops/docker/local/indrz_api/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrz/indrz-be/HEAD/devops/docker/local/indrz_api/Dockerfile -------------------------------------------------------------------------------- /devops/docker/local/indrz_api/db_init.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrz/indrz-be/HEAD/devops/docker/local/indrz_api/db_init.sql -------------------------------------------------------------------------------- /devops/docker/local/indrz_api/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrz/indrz-be/HEAD/devops/docker/local/indrz_api/entrypoint.sh -------------------------------------------------------------------------------- /devops/docker/local/nginx/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrz/indrz-be/HEAD/devops/docker/local/nginx/Dockerfile -------------------------------------------------------------------------------- /devops/docker/local/nginx/conf/default-dev.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrz/indrz-be/HEAD/devops/docker/local/nginx/conf/default-dev.conf -------------------------------------------------------------------------------- /devops/docker/production/geoserver/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrz/indrz-be/HEAD/devops/docker/production/geoserver/Dockerfile -------------------------------------------------------------------------------- /devops/docker/production/geoserver/fonts/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /devops/docker/production/geoserver/icons/construction_32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrz/indrz-be/HEAD/devops/docker/production/geoserver/icons/construction_32.png -------------------------------------------------------------------------------- /devops/docker/production/geoserver/icons/elevator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrz/indrz-be/HEAD/devops/docker/production/geoserver/icons/elevator.png -------------------------------------------------------------------------------- /devops/docker/production/geoserver/icons/entrance_32px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrz/indrz-be/HEAD/devops/docker/production/geoserver/icons/entrance_32px.png -------------------------------------------------------------------------------- /devops/docker/production/geoserver/icons/stairs_32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrz/indrz-be/HEAD/devops/docker/production/geoserver/icons/stairs_32.png -------------------------------------------------------------------------------- /devops/docker/production/geoserver/icons/wc_32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrz/indrz-be/HEAD/devops/docker/production/geoserver/icons/wc_32.png -------------------------------------------------------------------------------- /devops/docker/production/geoserver/icons/wc_damen_32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrz/indrz-be/HEAD/devops/docker/production/geoserver/icons/wc_damen_32.png -------------------------------------------------------------------------------- /devops/docker/production/geoserver/icons/wc_damen_herren.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrz/indrz-be/HEAD/devops/docker/production/geoserver/icons/wc_damen_herren.png -------------------------------------------------------------------------------- /devops/docker/production/geoserver/icons/wc_herren_32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrz/indrz-be/HEAD/devops/docker/production/geoserver/icons/wc_herren_32.png -------------------------------------------------------------------------------- /devops/docker/production/geoserver/icons/wc_personal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrz/indrz-be/HEAD/devops/docker/production/geoserver/icons/wc_personal.png -------------------------------------------------------------------------------- /devops/docker/production/geoserver/icons/wc_wheelchair_24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrz/indrz-be/HEAD/devops/docker/production/geoserver/icons/wc_wheelchair_24.png -------------------------------------------------------------------------------- /devops/docker/production/geoserver/icons/wc_wheelchair_damen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrz/indrz-be/HEAD/devops/docker/production/geoserver/icons/wc_wheelchair_damen.png -------------------------------------------------------------------------------- /devops/docker/production/geoserver/icons/wc_wheelchair_herren.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrz/indrz-be/HEAD/devops/docker/production/geoserver/icons/wc_wheelchair_herren.png -------------------------------------------------------------------------------- /devops/docker/production/indrz_api/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrz/indrz-be/HEAD/devops/docker/production/indrz_api/Dockerfile -------------------------------------------------------------------------------- /devops/docker/production/indrz_api/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrz/indrz-be/HEAD/devops/docker/production/indrz_api/entrypoint.sh -------------------------------------------------------------------------------- /devops/docker/production/nginx/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrz/indrz-be/HEAD/devops/docker/production/nginx/Dockerfile -------------------------------------------------------------------------------- /devops/docker/production/nginx/conf/allowed.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrz/indrz-be/HEAD/devops/docker/production/nginx/conf/allowed.conf -------------------------------------------------------------------------------- /devops/docker/production/nginx/conf/default-dev.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrz/indrz-be/HEAD/devops/docker/production/nginx/conf/default-dev.conf -------------------------------------------------------------------------------- /devops/docker/production/nginx/conf/default-prod.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrz/indrz-be/HEAD/devops/docker/production/nginx/conf/default-prod.conf -------------------------------------------------------------------------------- /devops/docker/production/nginx/conf/locations.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrz/indrz-be/HEAD/devops/docker/production/nginx/conf/locations.conf -------------------------------------------------------------------------------- /devops/k8/deploy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrz/indrz-be/HEAD/devops/k8/deploy.yaml -------------------------------------------------------------------------------- /devops/k8/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrz/indrz-be/HEAD/devops/k8/ingress.yaml -------------------------------------------------------------------------------- /devops/k8/pvc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrz/indrz-be/HEAD/devops/k8/pvc.yaml -------------------------------------------------------------------------------- /devops/k8/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrz/indrz-be/HEAD/devops/k8/readme.md -------------------------------------------------------------------------------- /devops/k8/secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrz/indrz-be/HEAD/devops/k8/secret.yaml -------------------------------------------------------------------------------- /devops/k8/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrz/indrz-be/HEAD/devops/k8/service.yaml -------------------------------------------------------------------------------- /docker-compose-local.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrz/indrz-be/HEAD/docker-compose-local.yml -------------------------------------------------------------------------------- /docker-compose-prod.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrz/indrz-be/HEAD/docker-compose-prod.yml -------------------------------------------------------------------------------- /docker-compose-production.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrz/indrz-be/HEAD/docker-compose-production.yml -------------------------------------------------------------------------------- /docs/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrz/indrz-be/HEAD/docs/.npmignore -------------------------------------------------------------------------------- /docs/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrz/indrz-be/HEAD/docs/package.json -------------------------------------------------------------------------------- /docs/src/.vuepress/components/Foo/Bar.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrz/indrz-be/HEAD/docs/src/.vuepress/components/Foo/Bar.vue -------------------------------------------------------------------------------- /docs/src/.vuepress/components/OtherComponent.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrz/indrz-be/HEAD/docs/src/.vuepress/components/OtherComponent.vue -------------------------------------------------------------------------------- /docs/src/.vuepress/components/demo-component.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrz/indrz-be/HEAD/docs/src/.vuepress/components/demo-component.vue -------------------------------------------------------------------------------- /docs/src/.vuepress/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrz/indrz-be/HEAD/docs/src/.vuepress/config.js -------------------------------------------------------------------------------- /docs/src/.vuepress/enhanceApp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrz/indrz-be/HEAD/docs/src/.vuepress/enhanceApp.js -------------------------------------------------------------------------------- /docs/src/.vuepress/styles/index.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrz/indrz-be/HEAD/docs/src/.vuepress/styles/index.styl -------------------------------------------------------------------------------- /docs/src/.vuepress/styles/palette.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrz/indrz-be/HEAD/docs/src/.vuepress/styles/palette.styl -------------------------------------------------------------------------------- /docs/src/config/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrz/indrz-be/HEAD/docs/src/config/README.md -------------------------------------------------------------------------------- /docs/src/config/docker-setup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrz/indrz-be/HEAD/docs/src/config/docker-setup.md -------------------------------------------------------------------------------- /docs/src/contact/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrz/indrz-be/HEAD/docs/src/contact/README.md -------------------------------------------------------------------------------- /docs/src/guide/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrz/indrz-be/HEAD/docs/src/guide/README.md -------------------------------------------------------------------------------- /docs/src/guide/backend-setup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrz/indrz-be/HEAD/docs/src/guide/backend-setup.md -------------------------------------------------------------------------------- /docs/src/guide/frontend-setup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrz/indrz-be/HEAD/docs/src/guide/frontend-setup.md -------------------------------------------------------------------------------- /docs/src/guide/release-process.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrz/indrz-be/HEAD/docs/src/guide/release-process.md -------------------------------------------------------------------------------- /docs/src/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrz/indrz-be/HEAD/docs/src/index.md -------------------------------------------------------------------------------- /docs/src/overview/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrz/indrz-be/HEAD/docs/src/overview/README.md -------------------------------------------------------------------------------- /docs/src/sales/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrz/indrz-be/HEAD/docs/src/sales/README.md -------------------------------------------------------------------------------- /indrz/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrz/indrz-be/HEAD/indrz/.env.example -------------------------------------------------------------------------------- /indrz/.initialized: -------------------------------------------------------------------------------- 1 | Tue Dec 3 20:43:03 UTC 2024 2 | -------------------------------------------------------------------------------- /indrz/AUTHORS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrz/indrz-be/HEAD/indrz/AUTHORS.md -------------------------------------------------------------------------------- /indrz/MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrz/indrz-be/HEAD/indrz/MANIFEST.in -------------------------------------------------------------------------------- /indrz/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrz/indrz-be/HEAD/indrz/__init__.py -------------------------------------------------------------------------------- /indrz/api/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /indrz/api/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrz/indrz-be/HEAD/indrz/api/admin.py -------------------------------------------------------------------------------- /indrz/api/models.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /indrz/api/search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrz/indrz-be/HEAD/indrz/api/search.py -------------------------------------------------------------------------------- /indrz/api/share.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrz/indrz-be/HEAD/indrz/api/share.py -------------------------------------------------------------------------------- /indrz/api/share_urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrz/indrz-be/HEAD/indrz/api/share_urls.py -------------------------------------------------------------------------------- /indrz/api/urls.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /indrz/api/views.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /indrz/buildings/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /indrz/buildings/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrz/indrz-be/HEAD/indrz/buildings/admin.py -------------------------------------------------------------------------------- /indrz/buildings/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrz/indrz-be/HEAD/indrz/buildings/api.py -------------------------------------------------------------------------------- /indrz/buildings/fixtures/building_floors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrz/indrz-be/HEAD/indrz/buildings/fixtures/building_floors.json -------------------------------------------------------------------------------- /indrz/buildings/fixtures/building_spaces.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrz/indrz-be/HEAD/indrz/buildings/fixtures/building_spaces.json -------------------------------------------------------------------------------- /indrz/buildings/fixtures/building_wings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrz/indrz-be/HEAD/indrz/buildings/fixtures/building_wings.json -------------------------------------------------------------------------------- /indrz/buildings/fixtures/buildings.json: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /indrz/buildings/fixtures/campus.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrz/indrz-be/HEAD/indrz/buildings/fixtures/campus.json -------------------------------------------------------------------------------- /indrz/buildings/fixtures/initial_ltspacetype_data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrz/indrz-be/HEAD/indrz/buildings/fixtures/initial_ltspacetype_data.json -------------------------------------------------------------------------------- /indrz/buildings/management/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /indrz/buildings/management/commands/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /indrz/buildings/management/commands/admin_user_exists.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrz/indrz-be/HEAD/indrz/buildings/management/commands/admin_user_exists.py -------------------------------------------------------------------------------- /indrz/buildings/management/commands/delete_building.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrz/indrz-be/HEAD/indrz/buildings/management/commands/delete_building.py -------------------------------------------------------------------------------- /indrz/buildings/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrz/indrz-be/HEAD/indrz/buildings/migrations/0001_initial.py -------------------------------------------------------------------------------- /indrz/buildings/migrations/0002_wing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrz/indrz-be/HEAD/indrz/buildings/migrations/0002_wing.py -------------------------------------------------------------------------------- /indrz/buildings/migrations/0003_auto_20191018_0739.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrz/indrz-be/HEAD/indrz/buildings/migrations/0003_auto_20191018_0739.py -------------------------------------------------------------------------------- /indrz/buildings/migrations/0004_buildingfloor_floor_name.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrz/indrz-be/HEAD/indrz/buildings/migrations/0004_buildingfloor_floor_name.py -------------------------------------------------------------------------------- /indrz/buildings/migrations/0005_auto_20191113_2015.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrz/indrz-be/HEAD/indrz/buildings/migrations/0005_auto_20191113_2015.py -------------------------------------------------------------------------------- /indrz/buildings/migrations/0006_buildingfloorspace_tags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrz/indrz-be/HEAD/indrz/buildings/migrations/0006_buildingfloorspace_tags.py -------------------------------------------------------------------------------- /indrz/buildings/migrations/0007_buildingfloorplanline_tags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrz/indrz-be/HEAD/indrz/buildings/migrations/0007_buildingfloorplanline_tags.py -------------------------------------------------------------------------------- /indrz/buildings/migrations/0008_auto_20191208_0919.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrz/indrz-be/HEAD/indrz/buildings/migrations/0008_auto_20191208_0919.py -------------------------------------------------------------------------------- /indrz/buildings/migrations/0009_interiorfloorsection_tags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrz/indrz-be/HEAD/indrz/buildings/migrations/0009_interiorfloorsection_tags.py -------------------------------------------------------------------------------- /indrz/buildings/migrations/0010_buildingfloor_tags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrz/indrz-be/HEAD/indrz/buildings/migrations/0010_buildingfloor_tags.py -------------------------------------------------------------------------------- /indrz/buildings/migrations/0011_auto_20210829_2133.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrz/indrz-be/HEAD/indrz/buildings/migrations/0011_auto_20210829_2133.py -------------------------------------------------------------------------------- /indrz/buildings/migrations/0012_campus_sort_order.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrz/indrz-be/HEAD/indrz/buildings/migrations/0012_campus_sort_order.py -------------------------------------------------------------------------------- /indrz/buildings/migrations/0013_auto_20210910_0945.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrz/indrz-be/HEAD/indrz/buildings/migrations/0013_auto_20210910_0945.py -------------------------------------------------------------------------------- /indrz/buildings/migrations/0014_auto_20230117_1539.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrz/indrz-be/HEAD/indrz/buildings/migrations/0014_auto_20230117_1539.py -------------------------------------------------------------------------------- /indrz/buildings/migrations/0015_buildingfloor_name_de_buildingfloor_name_en_and_more.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrz/indrz-be/HEAD/indrz/buildings/migrations/0015_buildingfloor_name_de_buildingfloor_name_en_and_more.py -------------------------------------------------------------------------------- /indrz/buildings/migrations/0016_remove_building_fk_campus_and_more.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrz/indrz-be/HEAD/indrz/buildings/migrations/0016_remove_building_fk_campus_and_more.py -------------------------------------------------------------------------------- /indrz/buildings/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /indrz/buildings/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrz/indrz-be/HEAD/indrz/buildings/models.py -------------------------------------------------------------------------------- /indrz/buildings/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrz/indrz-be/HEAD/indrz/buildings/serializers.py -------------------------------------------------------------------------------- /indrz/buildings/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrz/indrz-be/HEAD/indrz/buildings/tests.py -------------------------------------------------------------------------------- /indrz/buildings/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrz/indrz-be/HEAD/indrz/buildings/urls.py -------------------------------------------------------------------------------- /indrz/buildings/validators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrz/indrz-be/HEAD/indrz/buildings/validators.py -------------------------------------------------------------------------------- /indrz/buildings/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrz/indrz-be/HEAD/indrz/buildings/views.py -------------------------------------------------------------------------------- /indrz/campus/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /indrz/campus/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrz/indrz-be/HEAD/indrz/campus/admin.py -------------------------------------------------------------------------------- /indrz/campus/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrz/indrz-be/HEAD/indrz/campus/api.py -------------------------------------------------------------------------------- /indrz/campus/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrz/indrz-be/HEAD/indrz/campus/apps.py -------------------------------------------------------------------------------- /indrz/campus/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrz/indrz-be/HEAD/indrz/campus/migrations/0001_initial.py -------------------------------------------------------------------------------- /indrz/campus/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /indrz/campus/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrz/indrz-be/HEAD/indrz/campus/models.py -------------------------------------------------------------------------------- /indrz/campus/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrz/indrz-be/HEAD/indrz/campus/serializers.py -------------------------------------------------------------------------------- /indrz/campus/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrz/indrz-be/HEAD/indrz/campus/tests.py -------------------------------------------------------------------------------- /indrz/campus/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrz/indrz-be/HEAD/indrz/campus/views.py -------------------------------------------------------------------------------- /indrz/custom_config.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /indrz/health/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /indrz/health/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrz/indrz-be/HEAD/indrz/health/apps.py -------------------------------------------------------------------------------- /indrz/health/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrz/indrz-be/HEAD/indrz/health/urls.py -------------------------------------------------------------------------------- /indrz/health/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrz/indrz-be/HEAD/indrz/health/views.py -------------------------------------------------------------------------------- /indrz/indrz/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrz/indrz-be/HEAD/indrz/indrz/__init__.py -------------------------------------------------------------------------------- /indrz/indrz/routers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrz/indrz-be/HEAD/indrz/indrz/routers.py -------------------------------------------------------------------------------- /indrz/indrz/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrz/indrz-be/HEAD/indrz/indrz/urls.py -------------------------------------------------------------------------------- /indrz/indrz/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrz/indrz-be/HEAD/indrz/indrz/wsgi.py -------------------------------------------------------------------------------- /indrz/landscape/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /indrz/landscape/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrz/indrz-be/HEAD/indrz/landscape/admin.py -------------------------------------------------------------------------------- /indrz/landscape/fixtures/initial_ltsurfacetype_data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrz/indrz-be/HEAD/indrz/landscape/fixtures/initial_ltsurfacetype_data.json -------------------------------------------------------------------------------- /indrz/landscape/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrz/indrz-be/HEAD/indrz/landscape/models.py -------------------------------------------------------------------------------- /indrz/landscape/views.py: -------------------------------------------------------------------------------- 1 | # pass 2 | -------------------------------------------------------------------------------- /indrz/load_data.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrz/indrz-be/HEAD/indrz/load_data.sh -------------------------------------------------------------------------------- /indrz/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrz/indrz-be/HEAD/indrz/manage.py -------------------------------------------------------------------------------- /indrz/media/poi_icons/active_default_blue_pin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrz/indrz-be/HEAD/indrz/media/poi_icons/active_default_blue_pin.png -------------------------------------------------------------------------------- /indrz/media/poi_icons/inactive_default_grey_pin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrz/indrz-be/HEAD/indrz/media/poi_icons/inactive_default_grey_pin.png -------------------------------------------------------------------------------- /indrz/organizations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /indrz/organizations/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrz/indrz-be/HEAD/indrz/organizations/admin.py -------------------------------------------------------------------------------- /indrz/organizations/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrz/indrz-be/HEAD/indrz/organizations/apps.py -------------------------------------------------------------------------------- /indrz/organizations/fixtures/organization.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrz/indrz-be/HEAD/indrz/organizations/fixtures/organization.json -------------------------------------------------------------------------------- /indrz/organizations/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrz/indrz-be/HEAD/indrz/organizations/migrations/0001_initial.py -------------------------------------------------------------------------------- /indrz/organizations/migrations/0002_department.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrz/indrz-be/HEAD/indrz/organizations/migrations/0002_department.py -------------------------------------------------------------------------------- /indrz/organizations/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /indrz/organizations/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrz/indrz-be/HEAD/indrz/organizations/models.py -------------------------------------------------------------------------------- /indrz/organizations/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrz/indrz-be/HEAD/indrz/organizations/tests.py -------------------------------------------------------------------------------- /indrz/organizations/views.py: -------------------------------------------------------------------------------- 1 | from django.shortcuts import render 2 | 3 | # Create your views here. 4 | -------------------------------------------------------------------------------- /indrz/poi_manager/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /indrz/poi_manager/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrz/indrz-be/HEAD/indrz/poi_manager/admin.py -------------------------------------------------------------------------------- /indrz/poi_manager/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrz/indrz-be/HEAD/indrz/poi_manager/api.py -------------------------------------------------------------------------------- /indrz/poi_manager/fixtures/initial_poi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrz/indrz-be/HEAD/indrz/poi_manager/fixtures/initial_poi.json -------------------------------------------------------------------------------- /indrz/poi_manager/fixtures/initial_poi_categories.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrz/indrz-be/HEAD/indrz/poi_manager/fixtures/initial_poi_categories.json -------------------------------------------------------------------------------- /indrz/poi_manager/fixtures/initial_poi_icons.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrz/indrz-be/HEAD/indrz/poi_manager/fixtures/initial_poi_icons.json -------------------------------------------------------------------------------- /indrz/poi_manager/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrz/indrz-be/HEAD/indrz/poi_manager/forms.py -------------------------------------------------------------------------------- /indrz/poi_manager/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrz/indrz-be/HEAD/indrz/poi_manager/migrations/0001_initial.py -------------------------------------------------------------------------------- /indrz/poi_manager/migrations/0002_poi_floor_name.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrz/indrz-be/HEAD/indrz/poi_manager/migrations/0002_poi_floor_name.py -------------------------------------------------------------------------------- /indrz/poi_manager/migrations/0003_auto_20191018_0832.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrz/indrz-be/HEAD/indrz/poi_manager/migrations/0003_auto_20191018_0832.py -------------------------------------------------------------------------------- /indrz/poi_manager/migrations/0004_auto_20191113_1843.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrz/indrz-be/HEAD/indrz/poi_manager/migrations/0004_auto_20191113_1843.py -------------------------------------------------------------------------------- /indrz/poi_manager/migrations/0005_remove_poi_fk_campus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrz/indrz-be/HEAD/indrz/poi_manager/migrations/0005_remove_poi_fk_campus.py -------------------------------------------------------------------------------- /indrz/poi_manager/migrations/0006_poi_fk_campus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrz/indrz-be/HEAD/indrz/poi_manager/migrations/0006_poi_fk_campus.py -------------------------------------------------------------------------------- /indrz/poi_manager/migrations/0007_auto_20191122_0739.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrz/indrz-be/HEAD/indrz/poi_manager/migrations/0007_auto_20191122_0739.py -------------------------------------------------------------------------------- /indrz/poi_manager/migrations/0008_auto_20191122_0744.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrz/indrz-be/HEAD/indrz/poi_manager/migrations/0008_auto_20191122_0744.py -------------------------------------------------------------------------------- /indrz/poi_manager/migrations/0009_auto_20191122_0802.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrz/indrz-be/HEAD/indrz/poi_manager/migrations/0009_auto_20191122_0802.py -------------------------------------------------------------------------------- /indrz/poi_manager/migrations/0010_auto_20191122_0805.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrz/indrz-be/HEAD/indrz/poi_manager/migrations/0010_auto_20191122_0805.py -------------------------------------------------------------------------------- /indrz/poi_manager/migrations/0011_auto_20191207_1744.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrz/indrz-be/HEAD/indrz/poi_manager/migrations/0011_auto_20191207_1744.py -------------------------------------------------------------------------------- /indrz/poi_manager/migrations/0012_auto_20191207_1907.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrz/indrz-be/HEAD/indrz/poi_manager/migrations/0012_auto_20191207_1907.py -------------------------------------------------------------------------------- /indrz/poi_manager/migrations/0013_auto_20210106_1127.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrz/indrz-be/HEAD/indrz/poi_manager/migrations/0013_auto_20210106_1127.py -------------------------------------------------------------------------------- /indrz/poi_manager/migrations/0014_auto_20210829_1249.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrz/indrz-be/HEAD/indrz/poi_manager/migrations/0014_auto_20210829_1249.py -------------------------------------------------------------------------------- /indrz/poi_manager/migrations/0015_poicategory_html_field.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrz/indrz-be/HEAD/indrz/poi_manager/migrations/0015_poicategory_html_field.py -------------------------------------------------------------------------------- /indrz/poi_manager/migrations/0016_auto_20210909_1927.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrz/indrz-be/HEAD/indrz/poi_manager/migrations/0016_auto_20210909_1927.py -------------------------------------------------------------------------------- /indrz/poi_manager/migrations/0017_auto_20210909_1929.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrz/indrz-be/HEAD/indrz/poi_manager/migrations/0017_auto_20210909_1929.py -------------------------------------------------------------------------------- /indrz/poi_manager/migrations/0018_poiimages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrz/indrz-be/HEAD/indrz/poi_manager/migrations/0018_poiimages.py -------------------------------------------------------------------------------- /indrz/poi_manager/migrations/0019_auto_20230117_1539.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrz/indrz-be/HEAD/indrz/poi_manager/migrations/0019_auto_20230117_1539.py -------------------------------------------------------------------------------- /indrz/poi_manager/migrations/0020_alter_poiimages_options_and_more.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrz/indrz-be/HEAD/indrz/poi_manager/migrations/0020_alter_poiimages_options_and_more.py -------------------------------------------------------------------------------- /indrz/poi_manager/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /indrz/poi_manager/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrz/indrz-be/HEAD/indrz/poi_manager/models.py -------------------------------------------------------------------------------- /indrz/poi_manager/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrz/indrz-be/HEAD/indrz/poi_manager/serializers.py -------------------------------------------------------------------------------- /indrz/poi_manager/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrz/indrz-be/HEAD/indrz/poi_manager/tests.py -------------------------------------------------------------------------------- /indrz/poi_manager/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrz/indrz-be/HEAD/indrz/poi_manager/urls.py -------------------------------------------------------------------------------- /indrz/poi_manager/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrz/indrz-be/HEAD/indrz/poi_manager/views.py -------------------------------------------------------------------------------- /indrz/poi_manager/viewsets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrz/indrz-be/HEAD/indrz/poi_manager/viewsets.py -------------------------------------------------------------------------------- /indrz/pytest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrz/indrz-be/HEAD/indrz/pytest.ini -------------------------------------------------------------------------------- /indrz/requirements/base.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrz/indrz-be/HEAD/indrz/requirements/base.txt -------------------------------------------------------------------------------- /indrz/requirements/local.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrz/indrz-be/HEAD/indrz/requirements/local.txt -------------------------------------------------------------------------------- /indrz/requirements/production.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrz/indrz-be/HEAD/indrz/requirements/production.txt -------------------------------------------------------------------------------- /indrz/requirements/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrz/indrz-be/HEAD/indrz/requirements/requirements.txt -------------------------------------------------------------------------------- /indrz/requirements/requirements_dev.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrz/indrz-be/HEAD/indrz/requirements/requirements_dev.txt -------------------------------------------------------------------------------- /indrz/requirements/requirements_production.txt: -------------------------------------------------------------------------------- 1 | -r requirements.txt 2 | gunicorn==22.0.0 3 | sentry-sdk -------------------------------------------------------------------------------- /indrz/routing/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /indrz/routing/admin.py: -------------------------------------------------------------------------------- 1 | from django.contrib import admin 2 | 3 | # Register your models here. 4 | -------------------------------------------------------------------------------- /indrz/routing/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrz/indrz-be/HEAD/indrz/routing/api.py -------------------------------------------------------------------------------- /indrz/routing/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrz/indrz-be/HEAD/indrz/routing/models.py -------------------------------------------------------------------------------- /indrz/routing/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrz/indrz-be/HEAD/indrz/routing/readme.md -------------------------------------------------------------------------------- /indrz/routing/route_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrz/indrz-be/HEAD/indrz/routing/route_utils.py -------------------------------------------------------------------------------- /indrz/routing/routing_node_networklines.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrz/indrz-be/HEAD/indrz/routing/routing_node_networklines.py -------------------------------------------------------------------------------- /indrz/routing/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrz/indrz-be/HEAD/indrz/routing/urls.py -------------------------------------------------------------------------------- /indrz/routing/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrz/indrz-be/HEAD/indrz/routing/utils.py -------------------------------------------------------------------------------- /indrz/routing/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrz/indrz-be/HEAD/indrz/routing/views.py -------------------------------------------------------------------------------- /indrz/settings/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /indrz/settings/production.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrz/indrz-be/HEAD/indrz/settings/production.py -------------------------------------------------------------------------------- /indrz/settings/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrz/indrz-be/HEAD/indrz/settings/settings.py -------------------------------------------------------------------------------- /indrz/setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrz/indrz-be/HEAD/indrz/setup.cfg -------------------------------------------------------------------------------- /indrz/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrz/indrz-be/HEAD/indrz/setup.py -------------------------------------------------------------------------------- /indrz/templates/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /indrz/tests/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /indrz/tests/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /indrz/tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrz/indrz-be/HEAD/indrz/tox.ini -------------------------------------------------------------------------------- /indrz/users/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrz/indrz-be/HEAD/indrz/users/__init__.py -------------------------------------------------------------------------------- /indrz/users/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrz/indrz-be/HEAD/indrz/users/admin.py -------------------------------------------------------------------------------- /indrz/users/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrz/indrz-be/HEAD/indrz/users/api.py -------------------------------------------------------------------------------- /indrz/users/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrz/indrz-be/HEAD/indrz/users/apps.py -------------------------------------------------------------------------------- /indrz/users/factories.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrz/indrz-be/HEAD/indrz/users/factories.py -------------------------------------------------------------------------------- /indrz/users/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrz/indrz-be/HEAD/indrz/users/migrations/0001_initial.py -------------------------------------------------------------------------------- /indrz/users/migrations/0002_auto_20190908_0844.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrz/indrz-be/HEAD/indrz/users/migrations/0002_auto_20190908_0844.py -------------------------------------------------------------------------------- /indrz/users/migrations/0003_auto_20190908_1128.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrz/indrz-be/HEAD/indrz/users/migrations/0003_auto_20190908_1128.py -------------------------------------------------------------------------------- /indrz/users/migrations/0004_auto_20210220_2030.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrz/indrz-be/HEAD/indrz/users/migrations/0004_auto_20210220_2030.py -------------------------------------------------------------------------------- /indrz/users/migrations/0005_alter_user_id.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrz/indrz-be/HEAD/indrz/users/migrations/0005_alter_user_id.py -------------------------------------------------------------------------------- /indrz/users/migrations/0006_alter_user_options_alter_user_managers_and_more.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrz/indrz-be/HEAD/indrz/users/migrations/0006_alter_user_options_alter_user_managers_and_more.py -------------------------------------------------------------------------------- /indrz/users/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /indrz/users/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrz/indrz-be/HEAD/indrz/users/models.py -------------------------------------------------------------------------------- /indrz/users/routers.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /indrz/users/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrz/indrz-be/HEAD/indrz/users/serializers.py -------------------------------------------------------------------------------- /indrz/users/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrz/indrz-be/HEAD/indrz/users/tests.py -------------------------------------------------------------------------------- /indrz/users/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrz/indrz-be/HEAD/indrz/users/urls.py -------------------------------------------------------------------------------- /indrz/users/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrz/indrz-be/HEAD/indrz/users/utils.py -------------------------------------------------------------------------------- /indrz/users/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrz/indrz-be/HEAD/indrz/users/views.py -------------------------------------------------------------------------------- /indrz/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrz/indrz-be/HEAD/indrz/wsgi.py -------------------------------------------------------------------------------- /version.txt: -------------------------------------------------------------------------------- 1 | 3.1.5 --------------------------------------------------------------------------------