{"id":21150869,"url":"https://github.com/yigitoo/atay","last_synced_at":"2026-01-18T06:09:47.092Z","repository":{"id":189595152,"uuid":"469395875","full_name":"yigitoo/atay","owner":"yigitoo","description":"The project source code for Ağ Tabanlı Afet Yönetim Sistemi: ATAY.","archived":false,"fork":false,"pushed_at":"2024-06-19T23:21:27.000Z","size":97967,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2024-09-15T05:18:07.673Z","etag":null,"topics":["arduino","atay","company","deprem","disaster","earthquake","embedded","iot","lifesaver","saver","server","web"],"latest_commit_sha":null,"homepage":"https://github.com/yigitoo/atay","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/yigitoo.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.md","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2022-03-13T14:29:24.000Z","updated_at":"2024-06-19T23:21:30.000Z","dependencies_parsed_at":"2023-10-11T06:47:57.656Z","dependency_job_id":"ce8e8084-50f5-49c1-8a29-cc6dbcdcb8c7","html_url":"https://github.com/yigitoo/atay","commit_stats":{"total_commits":9,"total_committers":2,"mean_commits":4.5,"dds":"0.33333333333333337","last_synced_commit":"81f770b47c8f801c55f04d807efbb20328a1b010"},"previous_names":["yigitoo/atay"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/yigitoo/atay","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/yigitoo%2Fatay","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/yigitoo%2Fatay/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/yigitoo%2Fatay/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/yigitoo%2Fatay/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/yigitoo","download_url":"https://codeload.github.com/yigitoo/atay/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/yigitoo%2Fatay/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28531993,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-18T00:39:45.795Z","status":"online","status_checked_at":"2026-01-18T02:00:07.578Z","response_time":98,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["arduino","atay","company","deprem","disaster","earthquake","embedded","iot","lifesaver","saver","server","web"],"created_at":"2024-11-20T10:09:22.685Z","updated_at":"2026-01-18T06:09:47.078Z","avatar_url":"https://github.com/yigitoo.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# ATAY: Ağ Tabanlı Afet Yönetim Sistemi\n\n## !!! documentation process are not completed and the project is in-development !!!\n\n## Definitions:\n\n- ATAY: Ağ Tabanlı Afet Yönetim(i)\n- NBDM: Network Based Disaster Management (ATAY in English)\n- Geolocation API\n- API key: An Application Programming Interface authentication\nkey for using the Geolocation Services.\n\n\u003cbr\u003e\n\n---\n\nPlease run the following command before using scripts.\n\n```bash\n$ chmod u+x ./scripts/*.sh\n```\n\nAnd please create .env.local file like this: (in the server folder)\n```bash\n#DB_CREDENTIALS\nHOST=localhost\nPORT=3306\nUSERNAME=root\nPASSWORD=yourpassword\nDRIVER=pymysql\nDIALECT=mysql\nDB_NAME=atay\nUSERS_TABLE=users\nSTRUCTURES_TABLE=structures\nCARD_DATASETS_TABLE=card_datasets\nCARD_STATUSES_TABLE=card_statuses\nSECRET_KEY=e58c587c-7c6d-415a-805b-fbabbc264308 # you can create it with uuid.uuid4()\n\n```\n\n## Folder structures\n---\n\n```markdown\n\n├── __init__.py\n├── ai\n│  ├── __init__.py\n│  ├── data_fetcher.py\n│  └── model.py\n├── assets\n│  └── atay_db_diagram.png\n├── atay-embedded\n│  ├── api_conn_test.py\n│  ├── atay\n│  │  ├── atay.ino\n│  │  ├── data\n│  │  │  └── token.txt\n│  │  └── libs.txt\n│  ├── atay-host-url\n│  │  ├── index.js\n│  │  ├── package.json\n│  │  ├── pnpm-lock.yaml\n│  │  ├── README.txt\n│  │  └── vercel.json\n│  ├── requirements.txt\n│  └── token.txt\n├── scripts\n│  ├── __init__.py\n│  ├── curl_request_generator.py\n│  ├── make_dotenv.py\n│  ├── schema.sql\n│  ├── setup_db.bat\n│  └── setup_db.sh\n├── server\n│  ├── __init__.py\n│  ├── __pycache__\n│  │  ├── database.cpython-311.pyc\n│  │  ├── mylogger.cpython-311.pyc\n│  │  ├── responses.cpython-311.pyc\n│  │  ├── server.cpython-311.pyc\n│  │  └── utils.cpython-311.pyc\n│  ├── config\n│  │  ├── 1-stderr-file.json\n│  │  ├── 1-stderr-file.yaml\n│  │  ├── 2-stderr-json-file.json\n│  │  └── 2-stderr-json-file.yaml\n│  ├── database.py\n│  ├── logs\n│  │  └── atay.log\n│  ├── make_user.py\n│  ├── Makefile\n│  ├── mylogger.py\n│  ├── requirements.txt\n│  ├── responses.py\n│  ├── server.py\n│  ├── static\n│  │  ├── ATAY.png\n│  │  ├── favicon.ico\n│  │  └── robots.txt\n│  └── utils.py\n├── LICENSE.md\n├── README.md\n└── TODO.md\n```\n\u003cbr\u003e\n\n# To see a detailed example DB Diagram of ATAY:\n---\n\n![ATAY Database Diagram](assets/atay_db_diagram.png)\n\n_P.S: If you want to see exact database variable names. see the ```server/database.py```_\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fyigitoo%2Fatay","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fyigitoo%2Fatay","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fyigitoo%2Fatay/lists"}