├── README.md ├── backend ├── .editorconfig ├── .env.example ├── .eslintrc.js ├── .gitignore ├── .prettierrc ├── .sequelizerc ├── .vscode │ ├── launch.json │ └── settings.json ├── nodemon.json ├── package.json ├── src │ ├── app.js │ ├── app │ │ ├── controllers │ │ │ ├── AppointmentController.js │ │ │ ├── AvailableController.js │ │ │ ├── FileController.js │ │ │ ├── NotificationController.js │ │ │ ├── ProviderController.js │ │ │ ├── ScheduleController.js │ │ │ ├── SessionController.js │ │ │ └── UserController.js │ │ ├── jobs │ │ │ └── CancellationMail.js │ │ ├── middlewares │ │ │ └── auth.js │ │ ├── models │ │ │ ├── Appointment.js │ │ │ ├── File.js │ │ │ └── User.js │ │ ├── schemas │ │ │ └── Notification.js │ │ └── views │ │ │ └── emails │ │ │ ├── cancellation.hbs │ │ │ ├── layouts │ │ │ └── default.hbs │ │ │ └── partials │ │ │ └── footer.hbs │ ├── config │ │ ├── auth.js │ │ ├── database.js │ │ ├── mail.js │ │ ├── multer.js │ │ ├── redis.js │ │ └── sentry.js │ ├── database │ │ ├── index.js │ │ └── migrations │ │ │ ├── 20200131153930-create-users.js │ │ │ ├── 20200204004503-create-files.js │ │ │ ├── 20200204012341-add-avatar-field-to-users.js │ │ │ └── 20200204165354-create-appointments.js │ ├── lib │ │ ├── Mail.js │ │ └── Queue.js │ ├── queue.js │ ├── routes.js │ └── server.js ├── tmp │ └── uploads │ │ ├── 22960d0f9475ef7b2e8aa89ff9df2b1c.jpg │ │ ├── 453ad432e68487b406d05234248fe539.jpg │ │ ├── 660c662f82b817bfc7dc3d0c38610c82.jpg │ │ └── c40b15b47f06b31a34502869d9f323f5.jpg ├── yarn-error.log └── yarn.lock ├── mobile ├── .buckconfig ├── .editorconfig ├── .eslintrc.js ├── .flowconfig ├── .gitattributes ├── .github │ ├── gobarber1.jpg │ ├── gobarber2.jpg │ ├── gobarber3.jpg │ ├── gobarber4.jpg │ ├── gobarber5.jpg │ └── logo.png ├── .gitignore ├── .prettierrc ├── .watchmanconfig ├── README.md ├── __tests__ │ └── App-test.js ├── android │ ├── app │ │ ├── BUCK │ │ ├── build.gradle │ │ ├── build_defs.bzl │ │ ├── debug.keystore │ │ ├── proguard-rules.pro │ │ └── src │ │ │ ├── debug │ │ │ ├── AndroidManifest.xml │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── mobile │ │ │ │ └── ReactNativeFlipper.java │ │ │ └── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ └── com │ │ │ │ └── mobile │ │ │ │ ├── MainActivity.java │ │ │ │ └── MainApplication.java │ │ │ └── res │ │ │ ├── mipmap-hdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ └── values │ │ │ ├── strings.xml │ │ │ └── styles.xml │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ └── settings.gradle ├── app.json ├── babel.config.js ├── index.js ├── ios │ ├── Podfile │ ├── mobile-tvOS │ │ └── Info.plist │ ├── mobile-tvOSTests │ │ └── Info.plist │ ├── mobile.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ ├── mobile-tvOS.xcscheme │ │ │ └── mobile.xcscheme │ ├── mobile │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── Base.lproj │ │ │ └── LaunchScreen.xib │ │ ├── Images.xcassets │ │ │ ├── AppIcon.appiconset │ │ │ │ └── Contents.json │ │ │ └── Contents.json │ │ ├── Info.plist │ │ └── main.m │ └── mobileTests │ │ ├── Info.plist │ │ └── mobileTests.m ├── jsconfig.json ├── metro.config.js ├── package.json ├── src │ ├── App.js │ ├── assets │ │ ├── logo.png │ │ ├── logo@2x.png │ │ └── logo@3x.png │ ├── components │ │ ├── Appointment │ │ │ ├── index.js │ │ │ └── styles.js │ │ ├── Background │ │ │ └── index.js │ │ ├── Button │ │ │ ├── index.js │ │ │ └── styles.js │ │ ├── DateInput │ │ │ ├── index.android.js │ │ │ ├── index.ios.js │ │ │ ├── index.js │ │ │ └── styles.js │ │ └── Input │ │ │ ├── index.js │ │ │ └── styles.js │ ├── config │ │ └── ReactotronConfig.js │ ├── index.js │ ├── pages │ │ ├── Dashboard │ │ │ ├── index.js │ │ │ └── styles.js │ │ ├── New │ │ │ ├── Confirm │ │ │ │ ├── index.js │ │ │ │ └── styles.js │ │ │ ├── SelectDateTime │ │ │ │ ├── index.js │ │ │ │ └── styles.js │ │ │ └── SelectProvider │ │ │ │ ├── index.js │ │ │ │ └── styles.js │ │ ├── Profile │ │ │ ├── index.js │ │ │ └── styles.js │ │ ├── SignIn │ │ │ ├── index.js │ │ │ └── styles.js │ │ └── SignUp │ │ │ ├── index.js │ │ │ └── styles.js │ ├── routes.js │ ├── services │ │ └── api.js │ └── store │ │ ├── createStore.js │ │ ├── index.js │ │ ├── modules │ │ ├── auth │ │ │ ├── actions.js │ │ │ ├── reducer.js │ │ │ └── sagas.js │ │ ├── rootReducer.js │ │ ├── rootSaga.js │ │ └── user │ │ │ ├── actions.js │ │ │ ├── reducer.js │ │ │ └── sagas.js │ │ └── persistReducers.js └── yarn.lock └── web ├── .editorconfig ├── .eslintrc.js ├── .github ├── exemple-notebook.jpg ├── exemple-notebook0.jpg └── exemple-notebook1.jpg ├── .gitignore ├── .prettierrc ├── README.md ├── config-overrides.js ├── jsconfig.json ├── package.json ├── public └── index.html ├── src ├── App.js ├── assets │ ├── logo-purple.svg │ └── logo.svg ├── components │ ├── Header │ │ ├── index.js │ │ └── styles.js │ └── Notifications │ │ ├── index.js │ │ └── styles.js ├── config │ └── ReactotronConfig.js ├── index.js ├── pages │ ├── Dashboard │ │ ├── index.js │ │ └── styles.js │ ├── Profile │ │ ├── AvatarInput │ │ │ ├── index.js │ │ │ └── styles.js │ │ ├── index.js │ │ └── styles.js │ ├── SignIn │ │ └── index.js │ ├── SignUp │ │ └── index.js │ └── _layouts │ │ ├── auth │ │ ├── index.js │ │ └── styles.js │ │ └── default │ │ ├── index.js │ │ └── styles.js ├── routes │ ├── Route.js │ └── index.js ├── services │ ├── api.js │ └── history.js ├── store │ ├── createStore.js │ ├── index.js │ ├── modules │ │ ├── auth │ │ │ ├── actions.js │ │ │ ├── reducer.js │ │ │ └── sagas.js │ │ ├── rootReducer.js │ │ ├── rootSaga.js │ │ └── user │ │ │ ├── actions.js │ │ │ ├── reducer.js │ │ │ └── sagas.js │ └── persistReducers.js └── styles │ └── global.js └── yarn.lock /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micaellimedeiros/gobarber/HEAD/README.md -------------------------------------------------------------------------------- /backend/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micaellimedeiros/gobarber/HEAD/backend/.editorconfig -------------------------------------------------------------------------------- /backend/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micaellimedeiros/gobarber/HEAD/backend/.env.example -------------------------------------------------------------------------------- /backend/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micaellimedeiros/gobarber/HEAD/backend/.eslintrc.js -------------------------------------------------------------------------------- /backend/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .env 3 | -------------------------------------------------------------------------------- /backend/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micaellimedeiros/gobarber/HEAD/backend/.prettierrc -------------------------------------------------------------------------------- /backend/.sequelizerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micaellimedeiros/gobarber/HEAD/backend/.sequelizerc -------------------------------------------------------------------------------- /backend/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micaellimedeiros/gobarber/HEAD/backend/.vscode/launch.json -------------------------------------------------------------------------------- /backend/.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "git.ignoreLimitWarning": true 3 | } -------------------------------------------------------------------------------- /backend/nodemon.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micaellimedeiros/gobarber/HEAD/backend/nodemon.json -------------------------------------------------------------------------------- /backend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micaellimedeiros/gobarber/HEAD/backend/package.json -------------------------------------------------------------------------------- /backend/src/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micaellimedeiros/gobarber/HEAD/backend/src/app.js -------------------------------------------------------------------------------- /backend/src/app/controllers/AppointmentController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micaellimedeiros/gobarber/HEAD/backend/src/app/controllers/AppointmentController.js -------------------------------------------------------------------------------- /backend/src/app/controllers/AvailableController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micaellimedeiros/gobarber/HEAD/backend/src/app/controllers/AvailableController.js -------------------------------------------------------------------------------- /backend/src/app/controllers/FileController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micaellimedeiros/gobarber/HEAD/backend/src/app/controllers/FileController.js -------------------------------------------------------------------------------- /backend/src/app/controllers/NotificationController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micaellimedeiros/gobarber/HEAD/backend/src/app/controllers/NotificationController.js -------------------------------------------------------------------------------- /backend/src/app/controllers/ProviderController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micaellimedeiros/gobarber/HEAD/backend/src/app/controllers/ProviderController.js -------------------------------------------------------------------------------- /backend/src/app/controllers/ScheduleController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micaellimedeiros/gobarber/HEAD/backend/src/app/controllers/ScheduleController.js -------------------------------------------------------------------------------- /backend/src/app/controllers/SessionController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micaellimedeiros/gobarber/HEAD/backend/src/app/controllers/SessionController.js -------------------------------------------------------------------------------- /backend/src/app/controllers/UserController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micaellimedeiros/gobarber/HEAD/backend/src/app/controllers/UserController.js -------------------------------------------------------------------------------- /backend/src/app/jobs/CancellationMail.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micaellimedeiros/gobarber/HEAD/backend/src/app/jobs/CancellationMail.js -------------------------------------------------------------------------------- /backend/src/app/middlewares/auth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micaellimedeiros/gobarber/HEAD/backend/src/app/middlewares/auth.js -------------------------------------------------------------------------------- /backend/src/app/models/Appointment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micaellimedeiros/gobarber/HEAD/backend/src/app/models/Appointment.js -------------------------------------------------------------------------------- /backend/src/app/models/File.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micaellimedeiros/gobarber/HEAD/backend/src/app/models/File.js -------------------------------------------------------------------------------- /backend/src/app/models/User.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micaellimedeiros/gobarber/HEAD/backend/src/app/models/User.js -------------------------------------------------------------------------------- /backend/src/app/schemas/Notification.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micaellimedeiros/gobarber/HEAD/backend/src/app/schemas/Notification.js -------------------------------------------------------------------------------- /backend/src/app/views/emails/cancellation.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micaellimedeiros/gobarber/HEAD/backend/src/app/views/emails/cancellation.hbs -------------------------------------------------------------------------------- /backend/src/app/views/emails/layouts/default.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micaellimedeiros/gobarber/HEAD/backend/src/app/views/emails/layouts/default.hbs -------------------------------------------------------------------------------- /backend/src/app/views/emails/partials/footer.hbs: -------------------------------------------------------------------------------- 1 |
2 | Equipe GoBarber 3 | -------------------------------------------------------------------------------- /backend/src/config/auth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micaellimedeiros/gobarber/HEAD/backend/src/config/auth.js -------------------------------------------------------------------------------- /backend/src/config/database.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micaellimedeiros/gobarber/HEAD/backend/src/config/database.js -------------------------------------------------------------------------------- /backend/src/config/mail.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micaellimedeiros/gobarber/HEAD/backend/src/config/mail.js -------------------------------------------------------------------------------- /backend/src/config/multer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micaellimedeiros/gobarber/HEAD/backend/src/config/multer.js -------------------------------------------------------------------------------- /backend/src/config/redis.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micaellimedeiros/gobarber/HEAD/backend/src/config/redis.js -------------------------------------------------------------------------------- /backend/src/config/sentry.js: -------------------------------------------------------------------------------- 1 | export default { 2 | dsn: process.env.SENTRY_DNS, 3 | }; 4 | -------------------------------------------------------------------------------- /backend/src/database/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micaellimedeiros/gobarber/HEAD/backend/src/database/index.js -------------------------------------------------------------------------------- /backend/src/database/migrations/20200131153930-create-users.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micaellimedeiros/gobarber/HEAD/backend/src/database/migrations/20200131153930-create-users.js -------------------------------------------------------------------------------- /backend/src/database/migrations/20200204004503-create-files.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micaellimedeiros/gobarber/HEAD/backend/src/database/migrations/20200204004503-create-files.js -------------------------------------------------------------------------------- /backend/src/database/migrations/20200204012341-add-avatar-field-to-users.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micaellimedeiros/gobarber/HEAD/backend/src/database/migrations/20200204012341-add-avatar-field-to-users.js -------------------------------------------------------------------------------- /backend/src/database/migrations/20200204165354-create-appointments.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micaellimedeiros/gobarber/HEAD/backend/src/database/migrations/20200204165354-create-appointments.js -------------------------------------------------------------------------------- /backend/src/lib/Mail.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micaellimedeiros/gobarber/HEAD/backend/src/lib/Mail.js -------------------------------------------------------------------------------- /backend/src/lib/Queue.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micaellimedeiros/gobarber/HEAD/backend/src/lib/Queue.js -------------------------------------------------------------------------------- /backend/src/queue.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micaellimedeiros/gobarber/HEAD/backend/src/queue.js -------------------------------------------------------------------------------- /backend/src/routes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micaellimedeiros/gobarber/HEAD/backend/src/routes.js -------------------------------------------------------------------------------- /backend/src/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micaellimedeiros/gobarber/HEAD/backend/src/server.js -------------------------------------------------------------------------------- /backend/tmp/uploads/22960d0f9475ef7b2e8aa89ff9df2b1c.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micaellimedeiros/gobarber/HEAD/backend/tmp/uploads/22960d0f9475ef7b2e8aa89ff9df2b1c.jpg -------------------------------------------------------------------------------- /backend/tmp/uploads/453ad432e68487b406d05234248fe539.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micaellimedeiros/gobarber/HEAD/backend/tmp/uploads/453ad432e68487b406d05234248fe539.jpg -------------------------------------------------------------------------------- /backend/tmp/uploads/660c662f82b817bfc7dc3d0c38610c82.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micaellimedeiros/gobarber/HEAD/backend/tmp/uploads/660c662f82b817bfc7dc3d0c38610c82.jpg -------------------------------------------------------------------------------- /backend/tmp/uploads/c40b15b47f06b31a34502869d9f323f5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micaellimedeiros/gobarber/HEAD/backend/tmp/uploads/c40b15b47f06b31a34502869d9f323f5.jpg -------------------------------------------------------------------------------- /backend/yarn-error.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micaellimedeiros/gobarber/HEAD/backend/yarn-error.log -------------------------------------------------------------------------------- /backend/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micaellimedeiros/gobarber/HEAD/backend/yarn.lock -------------------------------------------------------------------------------- /mobile/.buckconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micaellimedeiros/gobarber/HEAD/mobile/.buckconfig -------------------------------------------------------------------------------- /mobile/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micaellimedeiros/gobarber/HEAD/mobile/.editorconfig -------------------------------------------------------------------------------- /mobile/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micaellimedeiros/gobarber/HEAD/mobile/.eslintrc.js -------------------------------------------------------------------------------- /mobile/.flowconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micaellimedeiros/gobarber/HEAD/mobile/.flowconfig -------------------------------------------------------------------------------- /mobile/.gitattributes: -------------------------------------------------------------------------------- 1 | *.pbxproj -text 2 | -------------------------------------------------------------------------------- /mobile/.github/gobarber1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micaellimedeiros/gobarber/HEAD/mobile/.github/gobarber1.jpg -------------------------------------------------------------------------------- /mobile/.github/gobarber2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micaellimedeiros/gobarber/HEAD/mobile/.github/gobarber2.jpg -------------------------------------------------------------------------------- /mobile/.github/gobarber3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micaellimedeiros/gobarber/HEAD/mobile/.github/gobarber3.jpg -------------------------------------------------------------------------------- /mobile/.github/gobarber4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micaellimedeiros/gobarber/HEAD/mobile/.github/gobarber4.jpg -------------------------------------------------------------------------------- /mobile/.github/gobarber5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micaellimedeiros/gobarber/HEAD/mobile/.github/gobarber5.jpg -------------------------------------------------------------------------------- /mobile/.github/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micaellimedeiros/gobarber/HEAD/mobile/.github/logo.png -------------------------------------------------------------------------------- /mobile/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micaellimedeiros/gobarber/HEAD/mobile/.gitignore -------------------------------------------------------------------------------- /mobile/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micaellimedeiros/gobarber/HEAD/mobile/.prettierrc -------------------------------------------------------------------------------- /mobile/.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /mobile/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micaellimedeiros/gobarber/HEAD/mobile/README.md -------------------------------------------------------------------------------- /mobile/__tests__/App-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micaellimedeiros/gobarber/HEAD/mobile/__tests__/App-test.js -------------------------------------------------------------------------------- /mobile/android/app/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micaellimedeiros/gobarber/HEAD/mobile/android/app/BUCK -------------------------------------------------------------------------------- /mobile/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micaellimedeiros/gobarber/HEAD/mobile/android/app/build.gradle -------------------------------------------------------------------------------- /mobile/android/app/build_defs.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micaellimedeiros/gobarber/HEAD/mobile/android/app/build_defs.bzl -------------------------------------------------------------------------------- /mobile/android/app/debug.keystore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micaellimedeiros/gobarber/HEAD/mobile/android/app/debug.keystore -------------------------------------------------------------------------------- /mobile/android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micaellimedeiros/gobarber/HEAD/mobile/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /mobile/android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micaellimedeiros/gobarber/HEAD/mobile/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /mobile/android/app/src/debug/java/com/mobile/ReactNativeFlipper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micaellimedeiros/gobarber/HEAD/mobile/android/app/src/debug/java/com/mobile/ReactNativeFlipper.java -------------------------------------------------------------------------------- /mobile/android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micaellimedeiros/gobarber/HEAD/mobile/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /mobile/android/app/src/main/java/com/mobile/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micaellimedeiros/gobarber/HEAD/mobile/android/app/src/main/java/com/mobile/MainActivity.java -------------------------------------------------------------------------------- /mobile/android/app/src/main/java/com/mobile/MainApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micaellimedeiros/gobarber/HEAD/mobile/android/app/src/main/java/com/mobile/MainApplication.java -------------------------------------------------------------------------------- /mobile/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micaellimedeiros/gobarber/HEAD/mobile/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /mobile/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micaellimedeiros/gobarber/HEAD/mobile/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /mobile/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micaellimedeiros/gobarber/HEAD/mobile/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /mobile/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micaellimedeiros/gobarber/HEAD/mobile/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /mobile/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micaellimedeiros/gobarber/HEAD/mobile/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /mobile/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micaellimedeiros/gobarber/HEAD/mobile/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /mobile/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micaellimedeiros/gobarber/HEAD/mobile/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /mobile/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micaellimedeiros/gobarber/HEAD/mobile/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /mobile/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micaellimedeiros/gobarber/HEAD/mobile/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /mobile/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micaellimedeiros/gobarber/HEAD/mobile/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /mobile/android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micaellimedeiros/gobarber/HEAD/mobile/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /mobile/android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micaellimedeiros/gobarber/HEAD/mobile/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /mobile/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micaellimedeiros/gobarber/HEAD/mobile/android/build.gradle -------------------------------------------------------------------------------- /mobile/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micaellimedeiros/gobarber/HEAD/mobile/android/gradle.properties -------------------------------------------------------------------------------- /mobile/android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micaellimedeiros/gobarber/HEAD/mobile/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /mobile/android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micaellimedeiros/gobarber/HEAD/mobile/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /mobile/android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micaellimedeiros/gobarber/HEAD/mobile/android/gradlew -------------------------------------------------------------------------------- /mobile/android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micaellimedeiros/gobarber/HEAD/mobile/android/gradlew.bat -------------------------------------------------------------------------------- /mobile/android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micaellimedeiros/gobarber/HEAD/mobile/android/settings.gradle -------------------------------------------------------------------------------- /mobile/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micaellimedeiros/gobarber/HEAD/mobile/app.json -------------------------------------------------------------------------------- /mobile/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micaellimedeiros/gobarber/HEAD/mobile/babel.config.js -------------------------------------------------------------------------------- /mobile/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micaellimedeiros/gobarber/HEAD/mobile/index.js -------------------------------------------------------------------------------- /mobile/ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micaellimedeiros/gobarber/HEAD/mobile/ios/Podfile -------------------------------------------------------------------------------- /mobile/ios/mobile-tvOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micaellimedeiros/gobarber/HEAD/mobile/ios/mobile-tvOS/Info.plist -------------------------------------------------------------------------------- /mobile/ios/mobile-tvOSTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micaellimedeiros/gobarber/HEAD/mobile/ios/mobile-tvOSTests/Info.plist -------------------------------------------------------------------------------- /mobile/ios/mobile.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micaellimedeiros/gobarber/HEAD/mobile/ios/mobile.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /mobile/ios/mobile.xcodeproj/xcshareddata/xcschemes/mobile-tvOS.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micaellimedeiros/gobarber/HEAD/mobile/ios/mobile.xcodeproj/xcshareddata/xcschemes/mobile-tvOS.xcscheme -------------------------------------------------------------------------------- /mobile/ios/mobile.xcodeproj/xcshareddata/xcschemes/mobile.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micaellimedeiros/gobarber/HEAD/mobile/ios/mobile.xcodeproj/xcshareddata/xcschemes/mobile.xcscheme -------------------------------------------------------------------------------- /mobile/ios/mobile/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micaellimedeiros/gobarber/HEAD/mobile/ios/mobile/AppDelegate.h -------------------------------------------------------------------------------- /mobile/ios/mobile/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micaellimedeiros/gobarber/HEAD/mobile/ios/mobile/AppDelegate.m -------------------------------------------------------------------------------- /mobile/ios/mobile/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micaellimedeiros/gobarber/HEAD/mobile/ios/mobile/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /mobile/ios/mobile/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micaellimedeiros/gobarber/HEAD/mobile/ios/mobile/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /mobile/ios/mobile/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micaellimedeiros/gobarber/HEAD/mobile/ios/mobile/Images.xcassets/Contents.json -------------------------------------------------------------------------------- /mobile/ios/mobile/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micaellimedeiros/gobarber/HEAD/mobile/ios/mobile/Info.plist -------------------------------------------------------------------------------- /mobile/ios/mobile/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micaellimedeiros/gobarber/HEAD/mobile/ios/mobile/main.m -------------------------------------------------------------------------------- /mobile/ios/mobileTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micaellimedeiros/gobarber/HEAD/mobile/ios/mobileTests/Info.plist -------------------------------------------------------------------------------- /mobile/ios/mobileTests/mobileTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micaellimedeiros/gobarber/HEAD/mobile/ios/mobileTests/mobileTests.m -------------------------------------------------------------------------------- /mobile/jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micaellimedeiros/gobarber/HEAD/mobile/jsconfig.json -------------------------------------------------------------------------------- /mobile/metro.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micaellimedeiros/gobarber/HEAD/mobile/metro.config.js -------------------------------------------------------------------------------- /mobile/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micaellimedeiros/gobarber/HEAD/mobile/package.json -------------------------------------------------------------------------------- /mobile/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micaellimedeiros/gobarber/HEAD/mobile/src/App.js -------------------------------------------------------------------------------- /mobile/src/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micaellimedeiros/gobarber/HEAD/mobile/src/assets/logo.png -------------------------------------------------------------------------------- /mobile/src/assets/logo@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micaellimedeiros/gobarber/HEAD/mobile/src/assets/logo@2x.png -------------------------------------------------------------------------------- /mobile/src/assets/logo@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micaellimedeiros/gobarber/HEAD/mobile/src/assets/logo@3x.png -------------------------------------------------------------------------------- /mobile/src/components/Appointment/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micaellimedeiros/gobarber/HEAD/mobile/src/components/Appointment/index.js -------------------------------------------------------------------------------- /mobile/src/components/Appointment/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micaellimedeiros/gobarber/HEAD/mobile/src/components/Appointment/styles.js -------------------------------------------------------------------------------- /mobile/src/components/Background/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micaellimedeiros/gobarber/HEAD/mobile/src/components/Background/index.js -------------------------------------------------------------------------------- /mobile/src/components/Button/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micaellimedeiros/gobarber/HEAD/mobile/src/components/Button/index.js -------------------------------------------------------------------------------- /mobile/src/components/Button/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micaellimedeiros/gobarber/HEAD/mobile/src/components/Button/styles.js -------------------------------------------------------------------------------- /mobile/src/components/DateInput/index.android.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micaellimedeiros/gobarber/HEAD/mobile/src/components/DateInput/index.android.js -------------------------------------------------------------------------------- /mobile/src/components/DateInput/index.ios.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micaellimedeiros/gobarber/HEAD/mobile/src/components/DateInput/index.ios.js -------------------------------------------------------------------------------- /mobile/src/components/DateInput/index.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mobile/src/components/DateInput/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micaellimedeiros/gobarber/HEAD/mobile/src/components/DateInput/styles.js -------------------------------------------------------------------------------- /mobile/src/components/Input/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micaellimedeiros/gobarber/HEAD/mobile/src/components/Input/index.js -------------------------------------------------------------------------------- /mobile/src/components/Input/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micaellimedeiros/gobarber/HEAD/mobile/src/components/Input/styles.js -------------------------------------------------------------------------------- /mobile/src/config/ReactotronConfig.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micaellimedeiros/gobarber/HEAD/mobile/src/config/ReactotronConfig.js -------------------------------------------------------------------------------- /mobile/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micaellimedeiros/gobarber/HEAD/mobile/src/index.js -------------------------------------------------------------------------------- /mobile/src/pages/Dashboard/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micaellimedeiros/gobarber/HEAD/mobile/src/pages/Dashboard/index.js -------------------------------------------------------------------------------- /mobile/src/pages/Dashboard/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micaellimedeiros/gobarber/HEAD/mobile/src/pages/Dashboard/styles.js -------------------------------------------------------------------------------- /mobile/src/pages/New/Confirm/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micaellimedeiros/gobarber/HEAD/mobile/src/pages/New/Confirm/index.js -------------------------------------------------------------------------------- /mobile/src/pages/New/Confirm/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micaellimedeiros/gobarber/HEAD/mobile/src/pages/New/Confirm/styles.js -------------------------------------------------------------------------------- /mobile/src/pages/New/SelectDateTime/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micaellimedeiros/gobarber/HEAD/mobile/src/pages/New/SelectDateTime/index.js -------------------------------------------------------------------------------- /mobile/src/pages/New/SelectDateTime/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micaellimedeiros/gobarber/HEAD/mobile/src/pages/New/SelectDateTime/styles.js -------------------------------------------------------------------------------- /mobile/src/pages/New/SelectProvider/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micaellimedeiros/gobarber/HEAD/mobile/src/pages/New/SelectProvider/index.js -------------------------------------------------------------------------------- /mobile/src/pages/New/SelectProvider/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micaellimedeiros/gobarber/HEAD/mobile/src/pages/New/SelectProvider/styles.js -------------------------------------------------------------------------------- /mobile/src/pages/Profile/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micaellimedeiros/gobarber/HEAD/mobile/src/pages/Profile/index.js -------------------------------------------------------------------------------- /mobile/src/pages/Profile/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micaellimedeiros/gobarber/HEAD/mobile/src/pages/Profile/styles.js -------------------------------------------------------------------------------- /mobile/src/pages/SignIn/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micaellimedeiros/gobarber/HEAD/mobile/src/pages/SignIn/index.js -------------------------------------------------------------------------------- /mobile/src/pages/SignIn/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micaellimedeiros/gobarber/HEAD/mobile/src/pages/SignIn/styles.js -------------------------------------------------------------------------------- /mobile/src/pages/SignUp/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micaellimedeiros/gobarber/HEAD/mobile/src/pages/SignUp/index.js -------------------------------------------------------------------------------- /mobile/src/pages/SignUp/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micaellimedeiros/gobarber/HEAD/mobile/src/pages/SignUp/styles.js -------------------------------------------------------------------------------- /mobile/src/routes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micaellimedeiros/gobarber/HEAD/mobile/src/routes.js -------------------------------------------------------------------------------- /mobile/src/services/api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micaellimedeiros/gobarber/HEAD/mobile/src/services/api.js -------------------------------------------------------------------------------- /mobile/src/store/createStore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micaellimedeiros/gobarber/HEAD/mobile/src/store/createStore.js -------------------------------------------------------------------------------- /mobile/src/store/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micaellimedeiros/gobarber/HEAD/mobile/src/store/index.js -------------------------------------------------------------------------------- /mobile/src/store/modules/auth/actions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micaellimedeiros/gobarber/HEAD/mobile/src/store/modules/auth/actions.js -------------------------------------------------------------------------------- /mobile/src/store/modules/auth/reducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micaellimedeiros/gobarber/HEAD/mobile/src/store/modules/auth/reducer.js -------------------------------------------------------------------------------- /mobile/src/store/modules/auth/sagas.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micaellimedeiros/gobarber/HEAD/mobile/src/store/modules/auth/sagas.js -------------------------------------------------------------------------------- /mobile/src/store/modules/rootReducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micaellimedeiros/gobarber/HEAD/mobile/src/store/modules/rootReducer.js -------------------------------------------------------------------------------- /mobile/src/store/modules/rootSaga.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micaellimedeiros/gobarber/HEAD/mobile/src/store/modules/rootSaga.js -------------------------------------------------------------------------------- /mobile/src/store/modules/user/actions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micaellimedeiros/gobarber/HEAD/mobile/src/store/modules/user/actions.js -------------------------------------------------------------------------------- /mobile/src/store/modules/user/reducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micaellimedeiros/gobarber/HEAD/mobile/src/store/modules/user/reducer.js -------------------------------------------------------------------------------- /mobile/src/store/modules/user/sagas.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micaellimedeiros/gobarber/HEAD/mobile/src/store/modules/user/sagas.js -------------------------------------------------------------------------------- /mobile/src/store/persistReducers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micaellimedeiros/gobarber/HEAD/mobile/src/store/persistReducers.js -------------------------------------------------------------------------------- /mobile/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micaellimedeiros/gobarber/HEAD/mobile/yarn.lock -------------------------------------------------------------------------------- /web/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micaellimedeiros/gobarber/HEAD/web/.editorconfig -------------------------------------------------------------------------------- /web/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micaellimedeiros/gobarber/HEAD/web/.eslintrc.js -------------------------------------------------------------------------------- /web/.github/exemple-notebook.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micaellimedeiros/gobarber/HEAD/web/.github/exemple-notebook.jpg -------------------------------------------------------------------------------- /web/.github/exemple-notebook0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micaellimedeiros/gobarber/HEAD/web/.github/exemple-notebook0.jpg -------------------------------------------------------------------------------- /web/.github/exemple-notebook1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micaellimedeiros/gobarber/HEAD/web/.github/exemple-notebook1.jpg -------------------------------------------------------------------------------- /web/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micaellimedeiros/gobarber/HEAD/web/.gitignore -------------------------------------------------------------------------------- /web/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micaellimedeiros/gobarber/HEAD/web/.prettierrc -------------------------------------------------------------------------------- /web/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micaellimedeiros/gobarber/HEAD/web/README.md -------------------------------------------------------------------------------- /web/config-overrides.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micaellimedeiros/gobarber/HEAD/web/config-overrides.js -------------------------------------------------------------------------------- /web/jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micaellimedeiros/gobarber/HEAD/web/jsconfig.json -------------------------------------------------------------------------------- /web/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micaellimedeiros/gobarber/HEAD/web/package.json -------------------------------------------------------------------------------- /web/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micaellimedeiros/gobarber/HEAD/web/public/index.html -------------------------------------------------------------------------------- /web/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micaellimedeiros/gobarber/HEAD/web/src/App.js -------------------------------------------------------------------------------- /web/src/assets/logo-purple.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micaellimedeiros/gobarber/HEAD/web/src/assets/logo-purple.svg -------------------------------------------------------------------------------- /web/src/assets/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micaellimedeiros/gobarber/HEAD/web/src/assets/logo.svg -------------------------------------------------------------------------------- /web/src/components/Header/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micaellimedeiros/gobarber/HEAD/web/src/components/Header/index.js -------------------------------------------------------------------------------- /web/src/components/Header/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micaellimedeiros/gobarber/HEAD/web/src/components/Header/styles.js -------------------------------------------------------------------------------- /web/src/components/Notifications/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micaellimedeiros/gobarber/HEAD/web/src/components/Notifications/index.js -------------------------------------------------------------------------------- /web/src/components/Notifications/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micaellimedeiros/gobarber/HEAD/web/src/components/Notifications/styles.js -------------------------------------------------------------------------------- /web/src/config/ReactotronConfig.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micaellimedeiros/gobarber/HEAD/web/src/config/ReactotronConfig.js -------------------------------------------------------------------------------- /web/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micaellimedeiros/gobarber/HEAD/web/src/index.js -------------------------------------------------------------------------------- /web/src/pages/Dashboard/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micaellimedeiros/gobarber/HEAD/web/src/pages/Dashboard/index.js -------------------------------------------------------------------------------- /web/src/pages/Dashboard/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micaellimedeiros/gobarber/HEAD/web/src/pages/Dashboard/styles.js -------------------------------------------------------------------------------- /web/src/pages/Profile/AvatarInput/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micaellimedeiros/gobarber/HEAD/web/src/pages/Profile/AvatarInput/index.js -------------------------------------------------------------------------------- /web/src/pages/Profile/AvatarInput/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micaellimedeiros/gobarber/HEAD/web/src/pages/Profile/AvatarInput/styles.js -------------------------------------------------------------------------------- /web/src/pages/Profile/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micaellimedeiros/gobarber/HEAD/web/src/pages/Profile/index.js -------------------------------------------------------------------------------- /web/src/pages/Profile/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micaellimedeiros/gobarber/HEAD/web/src/pages/Profile/styles.js -------------------------------------------------------------------------------- /web/src/pages/SignIn/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micaellimedeiros/gobarber/HEAD/web/src/pages/SignIn/index.js -------------------------------------------------------------------------------- /web/src/pages/SignUp/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micaellimedeiros/gobarber/HEAD/web/src/pages/SignUp/index.js -------------------------------------------------------------------------------- /web/src/pages/_layouts/auth/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micaellimedeiros/gobarber/HEAD/web/src/pages/_layouts/auth/index.js -------------------------------------------------------------------------------- /web/src/pages/_layouts/auth/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micaellimedeiros/gobarber/HEAD/web/src/pages/_layouts/auth/styles.js -------------------------------------------------------------------------------- /web/src/pages/_layouts/default/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micaellimedeiros/gobarber/HEAD/web/src/pages/_layouts/default/index.js -------------------------------------------------------------------------------- /web/src/pages/_layouts/default/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micaellimedeiros/gobarber/HEAD/web/src/pages/_layouts/default/styles.js -------------------------------------------------------------------------------- /web/src/routes/Route.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micaellimedeiros/gobarber/HEAD/web/src/routes/Route.js -------------------------------------------------------------------------------- /web/src/routes/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micaellimedeiros/gobarber/HEAD/web/src/routes/index.js -------------------------------------------------------------------------------- /web/src/services/api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micaellimedeiros/gobarber/HEAD/web/src/services/api.js -------------------------------------------------------------------------------- /web/src/services/history.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micaellimedeiros/gobarber/HEAD/web/src/services/history.js -------------------------------------------------------------------------------- /web/src/store/createStore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micaellimedeiros/gobarber/HEAD/web/src/store/createStore.js -------------------------------------------------------------------------------- /web/src/store/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micaellimedeiros/gobarber/HEAD/web/src/store/index.js -------------------------------------------------------------------------------- /web/src/store/modules/auth/actions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micaellimedeiros/gobarber/HEAD/web/src/store/modules/auth/actions.js -------------------------------------------------------------------------------- /web/src/store/modules/auth/reducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micaellimedeiros/gobarber/HEAD/web/src/store/modules/auth/reducer.js -------------------------------------------------------------------------------- /web/src/store/modules/auth/sagas.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micaellimedeiros/gobarber/HEAD/web/src/store/modules/auth/sagas.js -------------------------------------------------------------------------------- /web/src/store/modules/rootReducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micaellimedeiros/gobarber/HEAD/web/src/store/modules/rootReducer.js -------------------------------------------------------------------------------- /web/src/store/modules/rootSaga.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micaellimedeiros/gobarber/HEAD/web/src/store/modules/rootSaga.js -------------------------------------------------------------------------------- /web/src/store/modules/user/actions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micaellimedeiros/gobarber/HEAD/web/src/store/modules/user/actions.js -------------------------------------------------------------------------------- /web/src/store/modules/user/reducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micaellimedeiros/gobarber/HEAD/web/src/store/modules/user/reducer.js -------------------------------------------------------------------------------- /web/src/store/modules/user/sagas.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micaellimedeiros/gobarber/HEAD/web/src/store/modules/user/sagas.js -------------------------------------------------------------------------------- /web/src/store/persistReducers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micaellimedeiros/gobarber/HEAD/web/src/store/persistReducers.js -------------------------------------------------------------------------------- /web/src/styles/global.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micaellimedeiros/gobarber/HEAD/web/src/styles/global.js -------------------------------------------------------------------------------- /web/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micaellimedeiros/gobarber/HEAD/web/yarn.lock --------------------------------------------------------------------------------