├── .editorconfig ├── .eslintignore ├── .eslintrc ├── .github ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── PULL_REQUEST_TEMPLATE.md ├── dependabot.yml └── workflows │ ├── codeql-analysis.yml │ ├── deploy-server.yml │ ├── publish.yml │ └── test.yml ├── .gitignore ├── .prettierrc ├── CHANGELOG.md ├── LICENSE ├── README.md ├── api └── main.go ├── app ├── .eslintrc ├── .expo-shared │ └── assets.json ├── .gitignore ├── .watchmanconfig ├── App.tsx ├── README.md ├── app.json ├── assets │ ├── icon.png │ └── splash.png ├── babel.config.js ├── env.ts ├── package.json ├── src │ ├── Root.tsx │ ├── api │ │ ├── Auth.ts │ │ ├── Emergencies.ts │ │ ├── Location.ts │ │ └── types.ts │ ├── components │ │ ├── EmergencyDetails.tsx │ │ ├── EmergencyMap.tsx │ │ ├── HistoryItem.tsx │ │ ├── MapMarker.tsx │ │ ├── Overlay.tsx │ │ ├── OverlaySlide.tsx │ │ ├── Pagination.tsx │ │ ├── Report.tsx │ │ ├── Slide.tsx │ │ ├── modals │ │ │ ├── AddSafeSpotModal.tsx │ │ │ ├── DetailsModal.tsx │ │ │ └── ReportModal.tsx │ │ └── overlays │ │ │ ├── ContactsOverlay.tsx │ │ │ ├── NearbyOverlay.tsx │ │ │ ├── SafeSpotsOverlay.tsx │ │ │ └── SettingsOverlay.tsx │ ├── contexts │ │ ├── EmergencyContext.tsx │ │ ├── MapContext.tsx │ │ └── ModalsContext.tsx │ ├── helpers │ │ ├── colors.ts │ │ ├── location.ts │ │ └── tasks.ts │ ├── redux │ │ ├── emergencies │ │ │ ├── actions.ts │ │ │ ├── reducer.ts │ │ │ └── types.ts │ │ ├── location │ │ │ ├── actions.ts │ │ │ ├── reducer.ts │ │ │ └── types.ts │ │ ├── safe-spots │ │ │ ├── actions.ts │ │ │ ├── reducer.ts │ │ │ └── types.ts │ │ ├── theme │ │ │ ├── actions.ts │ │ │ ├── reducer.ts │ │ │ └── types.ts │ │ └── user │ │ │ ├── actions.ts │ │ │ ├── reducer.ts │ │ │ └── types.ts │ ├── screens │ │ ├── Onboarding.tsx │ │ ├── Overview.tsx │ │ └── index.tsx │ └── styles │ │ ├── darkMapStyle.ts │ │ └── lightMapStyle.ts ├── store.ts ├── tsconfig.json └── yarn.lock ├── assets └── AuxiliumLogo.png ├── dashboard ├── .eslintrc ├── .gitignore ├── README.md ├── package.json ├── public │ ├── favicon.ico │ ├── index.html │ └── manifest.json ├── src │ ├── App.tsx │ ├── index.css │ ├── index.tsx │ ├── pages │ │ └── Map.tsx │ ├── react-app-env.d.ts │ └── serviceWorker.ts ├── tsconfig.json └── yarn.lock ├── package.json ├── server ├── .eslintrc ├── .gitignore ├── README.md ├── nodemon.json ├── package.json ├── src │ ├── app.ts │ ├── config │ │ ├── database.ts │ │ └── redis.ts │ ├── controllers │ │ ├── auth.ts │ │ ├── emergencies.ts │ │ ├── location.ts │ │ └── safe-spots.ts │ ├── helpers │ │ ├── emergencies.ts │ │ └── notifications.ts │ ├── models │ │ ├── Emergency.ts │ │ ├── SafeSpot.ts │ │ ├── User.ts │ │ └── index.ts │ └── routes │ │ ├── auth.ts │ │ ├── emergencies.ts │ │ ├── index.ts │ │ ├── location.ts │ │ └── safe-spots.ts ├── tests │ ├── auth.spec.ts │ └── emergencies.spec.ts ├── tsconfig.json └── yarn.lock ├── tsconfig.json └── yarn.lock /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overthq/Auxilium/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overthq/Auxilium/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overthq/Auxilium/HEAD/.eslintrc -------------------------------------------------------------------------------- /.github/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overthq/Auxilium/HEAD/.github/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overthq/Auxilium/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overthq/Auxilium/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overthq/Auxilium/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overthq/Auxilium/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overthq/Auxilium/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/codeql-analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overthq/Auxilium/HEAD/.github/workflows/codeql-analysis.yml -------------------------------------------------------------------------------- /.github/workflows/deploy-server.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overthq/Auxilium/HEAD/.github/workflows/deploy-server.yml -------------------------------------------------------------------------------- /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overthq/Auxilium/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overthq/Auxilium/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | .DS_Store 3 | .env -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overthq/Auxilium/HEAD/.prettierrc -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overthq/Auxilium/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overthq/Auxilium/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overthq/Auxilium/HEAD/README.md -------------------------------------------------------------------------------- /api/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overthq/Auxilium/HEAD/api/main.go -------------------------------------------------------------------------------- /app/.eslintrc: -------------------------------------------------------------------------------- 1 | { "extends": "../.eslintrc" } 2 | -------------------------------------------------------------------------------- /app/.expo-shared/assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overthq/Auxilium/HEAD/app/.expo-shared/assets.json -------------------------------------------------------------------------------- /app/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | .expo/ 3 | .DS_Store 4 | __generated__/ -------------------------------------------------------------------------------- /app/.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /app/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overthq/Auxilium/HEAD/app/App.tsx -------------------------------------------------------------------------------- /app/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overthq/Auxilium/HEAD/app/README.md -------------------------------------------------------------------------------- /app/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overthq/Auxilium/HEAD/app/app.json -------------------------------------------------------------------------------- /app/assets/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overthq/Auxilium/HEAD/app/assets/icon.png -------------------------------------------------------------------------------- /app/assets/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overthq/Auxilium/HEAD/app/assets/splash.png -------------------------------------------------------------------------------- /app/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overthq/Auxilium/HEAD/app/babel.config.js -------------------------------------------------------------------------------- /app/env.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overthq/Auxilium/HEAD/app/env.ts -------------------------------------------------------------------------------- /app/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overthq/Auxilium/HEAD/app/package.json -------------------------------------------------------------------------------- /app/src/Root.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overthq/Auxilium/HEAD/app/src/Root.tsx -------------------------------------------------------------------------------- /app/src/api/Auth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overthq/Auxilium/HEAD/app/src/api/Auth.ts -------------------------------------------------------------------------------- /app/src/api/Emergencies.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overthq/Auxilium/HEAD/app/src/api/Emergencies.ts -------------------------------------------------------------------------------- /app/src/api/Location.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overthq/Auxilium/HEAD/app/src/api/Location.ts -------------------------------------------------------------------------------- /app/src/api/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overthq/Auxilium/HEAD/app/src/api/types.ts -------------------------------------------------------------------------------- /app/src/components/EmergencyDetails.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overthq/Auxilium/HEAD/app/src/components/EmergencyDetails.tsx -------------------------------------------------------------------------------- /app/src/components/EmergencyMap.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overthq/Auxilium/HEAD/app/src/components/EmergencyMap.tsx -------------------------------------------------------------------------------- /app/src/components/HistoryItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overthq/Auxilium/HEAD/app/src/components/HistoryItem.tsx -------------------------------------------------------------------------------- /app/src/components/MapMarker.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overthq/Auxilium/HEAD/app/src/components/MapMarker.tsx -------------------------------------------------------------------------------- /app/src/components/Overlay.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overthq/Auxilium/HEAD/app/src/components/Overlay.tsx -------------------------------------------------------------------------------- /app/src/components/OverlaySlide.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overthq/Auxilium/HEAD/app/src/components/OverlaySlide.tsx -------------------------------------------------------------------------------- /app/src/components/Pagination.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overthq/Auxilium/HEAD/app/src/components/Pagination.tsx -------------------------------------------------------------------------------- /app/src/components/Report.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overthq/Auxilium/HEAD/app/src/components/Report.tsx -------------------------------------------------------------------------------- /app/src/components/Slide.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overthq/Auxilium/HEAD/app/src/components/Slide.tsx -------------------------------------------------------------------------------- /app/src/components/modals/AddSafeSpotModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overthq/Auxilium/HEAD/app/src/components/modals/AddSafeSpotModal.tsx -------------------------------------------------------------------------------- /app/src/components/modals/DetailsModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overthq/Auxilium/HEAD/app/src/components/modals/DetailsModal.tsx -------------------------------------------------------------------------------- /app/src/components/modals/ReportModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overthq/Auxilium/HEAD/app/src/components/modals/ReportModal.tsx -------------------------------------------------------------------------------- /app/src/components/overlays/ContactsOverlay.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overthq/Auxilium/HEAD/app/src/components/overlays/ContactsOverlay.tsx -------------------------------------------------------------------------------- /app/src/components/overlays/NearbyOverlay.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overthq/Auxilium/HEAD/app/src/components/overlays/NearbyOverlay.tsx -------------------------------------------------------------------------------- /app/src/components/overlays/SafeSpotsOverlay.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overthq/Auxilium/HEAD/app/src/components/overlays/SafeSpotsOverlay.tsx -------------------------------------------------------------------------------- /app/src/components/overlays/SettingsOverlay.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overthq/Auxilium/HEAD/app/src/components/overlays/SettingsOverlay.tsx -------------------------------------------------------------------------------- /app/src/contexts/EmergencyContext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overthq/Auxilium/HEAD/app/src/contexts/EmergencyContext.tsx -------------------------------------------------------------------------------- /app/src/contexts/MapContext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overthq/Auxilium/HEAD/app/src/contexts/MapContext.tsx -------------------------------------------------------------------------------- /app/src/contexts/ModalsContext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overthq/Auxilium/HEAD/app/src/contexts/ModalsContext.tsx -------------------------------------------------------------------------------- /app/src/helpers/colors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overthq/Auxilium/HEAD/app/src/helpers/colors.ts -------------------------------------------------------------------------------- /app/src/helpers/location.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overthq/Auxilium/HEAD/app/src/helpers/location.ts -------------------------------------------------------------------------------- /app/src/helpers/tasks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overthq/Auxilium/HEAD/app/src/helpers/tasks.ts -------------------------------------------------------------------------------- /app/src/redux/emergencies/actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overthq/Auxilium/HEAD/app/src/redux/emergencies/actions.ts -------------------------------------------------------------------------------- /app/src/redux/emergencies/reducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overthq/Auxilium/HEAD/app/src/redux/emergencies/reducer.ts -------------------------------------------------------------------------------- /app/src/redux/emergencies/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overthq/Auxilium/HEAD/app/src/redux/emergencies/types.ts -------------------------------------------------------------------------------- /app/src/redux/location/actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overthq/Auxilium/HEAD/app/src/redux/location/actions.ts -------------------------------------------------------------------------------- /app/src/redux/location/reducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overthq/Auxilium/HEAD/app/src/redux/location/reducer.ts -------------------------------------------------------------------------------- /app/src/redux/location/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overthq/Auxilium/HEAD/app/src/redux/location/types.ts -------------------------------------------------------------------------------- /app/src/redux/safe-spots/actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overthq/Auxilium/HEAD/app/src/redux/safe-spots/actions.ts -------------------------------------------------------------------------------- /app/src/redux/safe-spots/reducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overthq/Auxilium/HEAD/app/src/redux/safe-spots/reducer.ts -------------------------------------------------------------------------------- /app/src/redux/safe-spots/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overthq/Auxilium/HEAD/app/src/redux/safe-spots/types.ts -------------------------------------------------------------------------------- /app/src/redux/theme/actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overthq/Auxilium/HEAD/app/src/redux/theme/actions.ts -------------------------------------------------------------------------------- /app/src/redux/theme/reducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overthq/Auxilium/HEAD/app/src/redux/theme/reducer.ts -------------------------------------------------------------------------------- /app/src/redux/theme/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overthq/Auxilium/HEAD/app/src/redux/theme/types.ts -------------------------------------------------------------------------------- /app/src/redux/user/actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overthq/Auxilium/HEAD/app/src/redux/user/actions.ts -------------------------------------------------------------------------------- /app/src/redux/user/reducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overthq/Auxilium/HEAD/app/src/redux/user/reducer.ts -------------------------------------------------------------------------------- /app/src/redux/user/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overthq/Auxilium/HEAD/app/src/redux/user/types.ts -------------------------------------------------------------------------------- /app/src/screens/Onboarding.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overthq/Auxilium/HEAD/app/src/screens/Onboarding.tsx -------------------------------------------------------------------------------- /app/src/screens/Overview.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overthq/Auxilium/HEAD/app/src/screens/Overview.tsx -------------------------------------------------------------------------------- /app/src/screens/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overthq/Auxilium/HEAD/app/src/screens/index.tsx -------------------------------------------------------------------------------- /app/src/styles/darkMapStyle.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overthq/Auxilium/HEAD/app/src/styles/darkMapStyle.ts -------------------------------------------------------------------------------- /app/src/styles/lightMapStyle.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overthq/Auxilium/HEAD/app/src/styles/lightMapStyle.ts -------------------------------------------------------------------------------- /app/store.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overthq/Auxilium/HEAD/app/store.ts -------------------------------------------------------------------------------- /app/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../tsconfig.json" 3 | } 4 | -------------------------------------------------------------------------------- /app/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overthq/Auxilium/HEAD/app/yarn.lock -------------------------------------------------------------------------------- /assets/AuxiliumLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overthq/Auxilium/HEAD/assets/AuxiliumLogo.png -------------------------------------------------------------------------------- /dashboard/.eslintrc: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../.eslintrc" 3 | } 4 | -------------------------------------------------------------------------------- /dashboard/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overthq/Auxilium/HEAD/dashboard/.gitignore -------------------------------------------------------------------------------- /dashboard/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overthq/Auxilium/HEAD/dashboard/README.md -------------------------------------------------------------------------------- /dashboard/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overthq/Auxilium/HEAD/dashboard/package.json -------------------------------------------------------------------------------- /dashboard/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overthq/Auxilium/HEAD/dashboard/public/favicon.ico -------------------------------------------------------------------------------- /dashboard/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overthq/Auxilium/HEAD/dashboard/public/index.html -------------------------------------------------------------------------------- /dashboard/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overthq/Auxilium/HEAD/dashboard/public/manifest.json -------------------------------------------------------------------------------- /dashboard/src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overthq/Auxilium/HEAD/dashboard/src/App.tsx -------------------------------------------------------------------------------- /dashboard/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overthq/Auxilium/HEAD/dashboard/src/index.css -------------------------------------------------------------------------------- /dashboard/src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overthq/Auxilium/HEAD/dashboard/src/index.tsx -------------------------------------------------------------------------------- /dashboard/src/pages/Map.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overthq/Auxilium/HEAD/dashboard/src/pages/Map.tsx -------------------------------------------------------------------------------- /dashboard/src/react-app-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /dashboard/src/serviceWorker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overthq/Auxilium/HEAD/dashboard/src/serviceWorker.ts -------------------------------------------------------------------------------- /dashboard/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../tsconfig.json" 3 | } 4 | -------------------------------------------------------------------------------- /dashboard/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overthq/Auxilium/HEAD/dashboard/yarn.lock -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overthq/Auxilium/HEAD/package.json -------------------------------------------------------------------------------- /server/.eslintrc: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../.eslintrc" 3 | } 4 | -------------------------------------------------------------------------------- /server/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | dist/ 3 | *.tsbuildinfo 4 | .env 5 | .DS_Store 6 | -------------------------------------------------------------------------------- /server/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overthq/Auxilium/HEAD/server/README.md -------------------------------------------------------------------------------- /server/nodemon.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overthq/Auxilium/HEAD/server/nodemon.json -------------------------------------------------------------------------------- /server/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overthq/Auxilium/HEAD/server/package.json -------------------------------------------------------------------------------- /server/src/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overthq/Auxilium/HEAD/server/src/app.ts -------------------------------------------------------------------------------- /server/src/config/database.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overthq/Auxilium/HEAD/server/src/config/database.ts -------------------------------------------------------------------------------- /server/src/config/redis.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overthq/Auxilium/HEAD/server/src/config/redis.ts -------------------------------------------------------------------------------- /server/src/controllers/auth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overthq/Auxilium/HEAD/server/src/controllers/auth.ts -------------------------------------------------------------------------------- /server/src/controllers/emergencies.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overthq/Auxilium/HEAD/server/src/controllers/emergencies.ts -------------------------------------------------------------------------------- /server/src/controllers/location.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overthq/Auxilium/HEAD/server/src/controllers/location.ts -------------------------------------------------------------------------------- /server/src/controllers/safe-spots.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overthq/Auxilium/HEAD/server/src/controllers/safe-spots.ts -------------------------------------------------------------------------------- /server/src/helpers/emergencies.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overthq/Auxilium/HEAD/server/src/helpers/emergencies.ts -------------------------------------------------------------------------------- /server/src/helpers/notifications.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overthq/Auxilium/HEAD/server/src/helpers/notifications.ts -------------------------------------------------------------------------------- /server/src/models/Emergency.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overthq/Auxilium/HEAD/server/src/models/Emergency.ts -------------------------------------------------------------------------------- /server/src/models/SafeSpot.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overthq/Auxilium/HEAD/server/src/models/SafeSpot.ts -------------------------------------------------------------------------------- /server/src/models/User.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overthq/Auxilium/HEAD/server/src/models/User.ts -------------------------------------------------------------------------------- /server/src/models/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overthq/Auxilium/HEAD/server/src/models/index.ts -------------------------------------------------------------------------------- /server/src/routes/auth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overthq/Auxilium/HEAD/server/src/routes/auth.ts -------------------------------------------------------------------------------- /server/src/routes/emergencies.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overthq/Auxilium/HEAD/server/src/routes/emergencies.ts -------------------------------------------------------------------------------- /server/src/routes/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overthq/Auxilium/HEAD/server/src/routes/index.ts -------------------------------------------------------------------------------- /server/src/routes/location.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overthq/Auxilium/HEAD/server/src/routes/location.ts -------------------------------------------------------------------------------- /server/src/routes/safe-spots.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overthq/Auxilium/HEAD/server/src/routes/safe-spots.ts -------------------------------------------------------------------------------- /server/tests/auth.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overthq/Auxilium/HEAD/server/tests/auth.spec.ts -------------------------------------------------------------------------------- /server/tests/emergencies.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overthq/Auxilium/HEAD/server/tests/emergencies.spec.ts -------------------------------------------------------------------------------- /server/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overthq/Auxilium/HEAD/server/tsconfig.json -------------------------------------------------------------------------------- /server/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overthq/Auxilium/HEAD/server/yarn.lock -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overthq/Auxilium/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overthq/Auxilium/HEAD/yarn.lock --------------------------------------------------------------------------------