├── .2env ├── .dockerignore ├── .env.example ├── .github └── workflows │ ├── prod.yml │ └── test.yml ├── .gitignore ├── .husky └── pre-commit ├── .npmrc ├── Dockerfile ├── LICENSE ├── Makefile ├── README.md ├── cacheDecorator.js ├── config.js ├── docker-compose.yml ├── index.js ├── jsconfig.json ├── lib └── Check.js ├── models ├── iletisimModel.js ├── yardimEtModel.js ├── yardimKaydiModel.js └── yardimModel.js ├── package.json ├── rome.json ├── routes ├── cache.js └── controllers │ ├── healthcheck.js │ ├── iletisim.js │ ├── yardim.js │ ├── yardimEt.js │ ├── yardimEtKaydi.js │ └── yardimKaydi.js ├── scripts └── exportYardimEtCsv.js ├── server ├── build.js ├── buildCache.js ├── cron.js └── logger.js ├── services └── yardimMails.js ├── task-definition.json ├── tests └── iletisim.test.js └── typings └── server.d.ts /.2env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-io-backend/HEAD/.2env -------------------------------------------------------------------------------- /.dockerignore: -------------------------------------------------------------------------------- 1 | .env 2 | node_modules/ -------------------------------------------------------------------------------- /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-io-backend/HEAD/.env.example -------------------------------------------------------------------------------- /.github/workflows/prod.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-io-backend/HEAD/.github/workflows/prod.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-io-backend/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-io-backend/HEAD/.gitignore -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-io-backend/HEAD/.husky/pre-commit -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | ignore-scripts=true 2 | -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-io-backend/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-io-backend/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-io-backend/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-io-backend/HEAD/README.md -------------------------------------------------------------------------------- /cacheDecorator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-io-backend/HEAD/cacheDecorator.js -------------------------------------------------------------------------------- /config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-io-backend/HEAD/config.js -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-io-backend/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-io-backend/HEAD/index.js -------------------------------------------------------------------------------- /jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-io-backend/HEAD/jsconfig.json -------------------------------------------------------------------------------- /lib/Check.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-io-backend/HEAD/lib/Check.js -------------------------------------------------------------------------------- /models/iletisimModel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-io-backend/HEAD/models/iletisimModel.js -------------------------------------------------------------------------------- /models/yardimEtModel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-io-backend/HEAD/models/yardimEtModel.js -------------------------------------------------------------------------------- /models/yardimKaydiModel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-io-backend/HEAD/models/yardimKaydiModel.js -------------------------------------------------------------------------------- /models/yardimModel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-io-backend/HEAD/models/yardimModel.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-io-backend/HEAD/package.json -------------------------------------------------------------------------------- /rome.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-io-backend/HEAD/rome.json -------------------------------------------------------------------------------- /routes/cache.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-io-backend/HEAD/routes/cache.js -------------------------------------------------------------------------------- /routes/controllers/healthcheck.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-io-backend/HEAD/routes/controllers/healthcheck.js -------------------------------------------------------------------------------- /routes/controllers/iletisim.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-io-backend/HEAD/routes/controllers/iletisim.js -------------------------------------------------------------------------------- /routes/controllers/yardim.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-io-backend/HEAD/routes/controllers/yardim.js -------------------------------------------------------------------------------- /routes/controllers/yardimEt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-io-backend/HEAD/routes/controllers/yardimEt.js -------------------------------------------------------------------------------- /routes/controllers/yardimEtKaydi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-io-backend/HEAD/routes/controllers/yardimEtKaydi.js -------------------------------------------------------------------------------- /routes/controllers/yardimKaydi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-io-backend/HEAD/routes/controllers/yardimKaydi.js -------------------------------------------------------------------------------- /scripts/exportYardimEtCsv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-io-backend/HEAD/scripts/exportYardimEtCsv.js -------------------------------------------------------------------------------- /server/build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-io-backend/HEAD/server/build.js -------------------------------------------------------------------------------- /server/buildCache.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-io-backend/HEAD/server/buildCache.js -------------------------------------------------------------------------------- /server/cron.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-io-backend/HEAD/server/cron.js -------------------------------------------------------------------------------- /server/logger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-io-backend/HEAD/server/logger.js -------------------------------------------------------------------------------- /services/yardimMails.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-io-backend/HEAD/services/yardimMails.js -------------------------------------------------------------------------------- /task-definition.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-io-backend/HEAD/task-definition.json -------------------------------------------------------------------------------- /tests/iletisim.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-io-backend/HEAD/tests/iletisim.test.js -------------------------------------------------------------------------------- /typings/server.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acikyazilimagi/deprem-io-backend/HEAD/typings/server.d.ts --------------------------------------------------------------------------------