├── .DS_Store ├── backend ├── .gitignore ├── knexfile.js ├── package-lock.json ├── package.json ├── src │ ├── controllers │ │ ├── IncidentController.js │ │ ├── OngController.js │ │ ├── ProfileController.js │ │ └── SessionController.js │ ├── database │ │ ├── connection.js │ │ ├── db.sqlite │ │ └── migrations │ │ │ ├── 20200324081951_create_ongs.js │ │ │ └── 20200324082256_create_incidents.js │ ├── index.js │ └── routes.js ├── yarn-error.log └── yarn.lock ├── frontend ├── .gitignore ├── package.json ├── public │ ├── favicon.ico │ └── index.html ├── src │ ├── App.js │ ├── assets │ │ ├── heroes.png │ │ └── logo.svg │ ├── global.css │ ├── index.js │ ├── pages │ │ ├── Logon │ │ │ ├── index.js │ │ │ └── styles.css │ │ ├── NewIncident │ │ │ ├── index.js │ │ │ └── styles.css │ │ ├── Profile │ │ │ ├── index.js │ │ │ └── styles.css │ │ └── Register │ │ │ ├── index.js │ │ │ └── styles.css │ ├── routes.js │ └── services │ │ └── api.js └── yarn.lock └── mobile ├── .expo-shared └── assets.json ├── .gitignore ├── App.js ├── app.json ├── assets ├── icon.png └── splash.png ├── babel.config.js ├── package-lock.json ├── package.json ├── src ├── assets │ ├── logo.png │ ├── logo@2x.png │ └── logo@3x.png ├── pages │ ├── Detail │ │ ├── index.js │ │ └── styles.js │ └── Incidents │ │ ├── index.js │ │ └── styles.js ├── routes.js └── services │ └── api.js └── yarn.lock /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josepholiveira/be-the-hero/HEAD/.DS_Store -------------------------------------------------------------------------------- /backend/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules -------------------------------------------------------------------------------- /backend/knexfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josepholiveira/be-the-hero/HEAD/backend/knexfile.js -------------------------------------------------------------------------------- /backend/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josepholiveira/be-the-hero/HEAD/backend/package-lock.json -------------------------------------------------------------------------------- /backend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josepholiveira/be-the-hero/HEAD/backend/package.json -------------------------------------------------------------------------------- /backend/src/controllers/IncidentController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josepholiveira/be-the-hero/HEAD/backend/src/controllers/IncidentController.js -------------------------------------------------------------------------------- /backend/src/controllers/OngController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josepholiveira/be-the-hero/HEAD/backend/src/controllers/OngController.js -------------------------------------------------------------------------------- /backend/src/controllers/ProfileController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josepholiveira/be-the-hero/HEAD/backend/src/controllers/ProfileController.js -------------------------------------------------------------------------------- /backend/src/controllers/SessionController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josepholiveira/be-the-hero/HEAD/backend/src/controllers/SessionController.js -------------------------------------------------------------------------------- /backend/src/database/connection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josepholiveira/be-the-hero/HEAD/backend/src/database/connection.js -------------------------------------------------------------------------------- /backend/src/database/db.sqlite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josepholiveira/be-the-hero/HEAD/backend/src/database/db.sqlite -------------------------------------------------------------------------------- /backend/src/database/migrations/20200324081951_create_ongs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josepholiveira/be-the-hero/HEAD/backend/src/database/migrations/20200324081951_create_ongs.js -------------------------------------------------------------------------------- /backend/src/database/migrations/20200324082256_create_incidents.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josepholiveira/be-the-hero/HEAD/backend/src/database/migrations/20200324082256_create_incidents.js -------------------------------------------------------------------------------- /backend/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josepholiveira/be-the-hero/HEAD/backend/src/index.js -------------------------------------------------------------------------------- /backend/src/routes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josepholiveira/be-the-hero/HEAD/backend/src/routes.js -------------------------------------------------------------------------------- /backend/yarn-error.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josepholiveira/be-the-hero/HEAD/backend/yarn-error.log -------------------------------------------------------------------------------- /backend/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josepholiveira/be-the-hero/HEAD/backend/yarn.lock -------------------------------------------------------------------------------- /frontend/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josepholiveira/be-the-hero/HEAD/frontend/.gitignore -------------------------------------------------------------------------------- /frontend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josepholiveira/be-the-hero/HEAD/frontend/package.json -------------------------------------------------------------------------------- /frontend/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josepholiveira/be-the-hero/HEAD/frontend/public/favicon.ico -------------------------------------------------------------------------------- /frontend/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josepholiveira/be-the-hero/HEAD/frontend/public/index.html -------------------------------------------------------------------------------- /frontend/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josepholiveira/be-the-hero/HEAD/frontend/src/App.js -------------------------------------------------------------------------------- /frontend/src/assets/heroes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josepholiveira/be-the-hero/HEAD/frontend/src/assets/heroes.png -------------------------------------------------------------------------------- /frontend/src/assets/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josepholiveira/be-the-hero/HEAD/frontend/src/assets/logo.svg -------------------------------------------------------------------------------- /frontend/src/global.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josepholiveira/be-the-hero/HEAD/frontend/src/global.css -------------------------------------------------------------------------------- /frontend/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josepholiveira/be-the-hero/HEAD/frontend/src/index.js -------------------------------------------------------------------------------- /frontend/src/pages/Logon/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josepholiveira/be-the-hero/HEAD/frontend/src/pages/Logon/index.js -------------------------------------------------------------------------------- /frontend/src/pages/Logon/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josepholiveira/be-the-hero/HEAD/frontend/src/pages/Logon/styles.css -------------------------------------------------------------------------------- /frontend/src/pages/NewIncident/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josepholiveira/be-the-hero/HEAD/frontend/src/pages/NewIncident/index.js -------------------------------------------------------------------------------- /frontend/src/pages/NewIncident/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josepholiveira/be-the-hero/HEAD/frontend/src/pages/NewIncident/styles.css -------------------------------------------------------------------------------- /frontend/src/pages/Profile/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josepholiveira/be-the-hero/HEAD/frontend/src/pages/Profile/index.js -------------------------------------------------------------------------------- /frontend/src/pages/Profile/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josepholiveira/be-the-hero/HEAD/frontend/src/pages/Profile/styles.css -------------------------------------------------------------------------------- /frontend/src/pages/Register/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josepholiveira/be-the-hero/HEAD/frontend/src/pages/Register/index.js -------------------------------------------------------------------------------- /frontend/src/pages/Register/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josepholiveira/be-the-hero/HEAD/frontend/src/pages/Register/styles.css -------------------------------------------------------------------------------- /frontend/src/routes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josepholiveira/be-the-hero/HEAD/frontend/src/routes.js -------------------------------------------------------------------------------- /frontend/src/services/api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josepholiveira/be-the-hero/HEAD/frontend/src/services/api.js -------------------------------------------------------------------------------- /frontend/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josepholiveira/be-the-hero/HEAD/frontend/yarn.lock -------------------------------------------------------------------------------- /mobile/.expo-shared/assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josepholiveira/be-the-hero/HEAD/mobile/.expo-shared/assets.json -------------------------------------------------------------------------------- /mobile/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josepholiveira/be-the-hero/HEAD/mobile/.gitignore -------------------------------------------------------------------------------- /mobile/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josepholiveira/be-the-hero/HEAD/mobile/App.js -------------------------------------------------------------------------------- /mobile/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josepholiveira/be-the-hero/HEAD/mobile/app.json -------------------------------------------------------------------------------- /mobile/assets/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josepholiveira/be-the-hero/HEAD/mobile/assets/icon.png -------------------------------------------------------------------------------- /mobile/assets/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josepholiveira/be-the-hero/HEAD/mobile/assets/splash.png -------------------------------------------------------------------------------- /mobile/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josepholiveira/be-the-hero/HEAD/mobile/babel.config.js -------------------------------------------------------------------------------- /mobile/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josepholiveira/be-the-hero/HEAD/mobile/package-lock.json -------------------------------------------------------------------------------- /mobile/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josepholiveira/be-the-hero/HEAD/mobile/package.json -------------------------------------------------------------------------------- /mobile/src/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josepholiveira/be-the-hero/HEAD/mobile/src/assets/logo.png -------------------------------------------------------------------------------- /mobile/src/assets/logo@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josepholiveira/be-the-hero/HEAD/mobile/src/assets/logo@2x.png -------------------------------------------------------------------------------- /mobile/src/assets/logo@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josepholiveira/be-the-hero/HEAD/mobile/src/assets/logo@3x.png -------------------------------------------------------------------------------- /mobile/src/pages/Detail/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josepholiveira/be-the-hero/HEAD/mobile/src/pages/Detail/index.js -------------------------------------------------------------------------------- /mobile/src/pages/Detail/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josepholiveira/be-the-hero/HEAD/mobile/src/pages/Detail/styles.js -------------------------------------------------------------------------------- /mobile/src/pages/Incidents/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josepholiveira/be-the-hero/HEAD/mobile/src/pages/Incidents/index.js -------------------------------------------------------------------------------- /mobile/src/pages/Incidents/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josepholiveira/be-the-hero/HEAD/mobile/src/pages/Incidents/styles.js -------------------------------------------------------------------------------- /mobile/src/routes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josepholiveira/be-the-hero/HEAD/mobile/src/routes.js -------------------------------------------------------------------------------- /mobile/src/services/api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josepholiveira/be-the-hero/HEAD/mobile/src/services/api.js -------------------------------------------------------------------------------- /mobile/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josepholiveira/be-the-hero/HEAD/mobile/yarn.lock --------------------------------------------------------------------------------