├── .gitignore ├── 02-conceitos-dev ├── backend │ ├── package.json │ ├── src │ │ └── index.js │ └── yarn.lock ├── frontend │ ├── babel.config.js │ ├── package.json │ ├── public │ │ ├── bundle.js │ │ └── index.html │ ├── src │ │ ├── App.css │ │ ├── App.js │ │ ├── components │ │ │ └── Header.js │ │ ├── index.js │ │ └── services │ │ │ └── api.js │ ├── webpack.config.js │ └── yarn.lock ├── mobile │ ├── .buckconfig │ ├── .flowconfig │ ├── .gitattributes │ ├── .gitignore │ ├── .watchmanconfig │ ├── __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 │ │ ├── Podfile.lock │ │ ├── mobile-tvOS │ │ │ └── Info.plist │ │ ├── mobile-tvOSTests │ │ │ └── Info.plist │ │ ├── mobile.xcodeproj │ │ │ ├── project.pbxproj │ │ │ └── xcshareddata │ │ │ │ └── xcschemes │ │ │ │ ├── mobile-tvOS.xcscheme │ │ │ │ └── mobile.xcscheme │ │ ├── mobile.xcworkspace │ │ │ └── contents.xcworkspacedata │ │ ├── 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 │ ├── metro.config.js │ ├── package.json │ ├── src │ │ ├── index.js │ │ └── services │ │ │ └── api.js │ └── yarn.lock └── typescript │ ├── dist │ └── index.js │ ├── package.json │ ├── src │ ├── index.ts │ ├── routes.ts │ └── services │ │ └── CreateUser.ts │ ├── tsconfig.json │ └── yarn.lock ├── 03-primeiro-projeto-node ├── package.json ├── src │ └── server.ts ├── tsconfig.json └── yarn.lock ├── 04-iniciando-back-end ├── .editorconfig ├── .env.example ├── .eslintignore ├── .eslintrc.json ├── .gitignore ├── README.md ├── babel.config.js ├── jest.config.js ├── ormconfig.example.json ├── package.json ├── prettier.config.js ├── src │ ├── @types │ │ └── express.d.ts │ ├── config │ │ ├── auth.ts │ │ ├── cache.ts │ │ ├── mail.ts │ │ └── upload.ts │ ├── modules │ │ ├── appointments │ │ │ ├── dtos │ │ │ │ ├── ICreateAppointmentDTO.ts │ │ │ │ ├── IFindAllInDayFromProviderDTO.ts │ │ │ │ └── IFindAllInMonthFromProviderDTO.ts │ │ │ ├── infra │ │ │ │ ├── http │ │ │ │ │ ├── controllers │ │ │ │ │ │ ├── AppointmentsController.ts │ │ │ │ │ │ ├── ProviderAppointmentsController.ts │ │ │ │ │ │ ├── ProviderDayAvailabilityController.ts │ │ │ │ │ │ ├── ProviderMonthAvailabilityController.ts │ │ │ │ │ │ └── ProvidersController.ts │ │ │ │ │ └── routes │ │ │ │ │ │ ├── appointments.routes.ts │ │ │ │ │ │ └── providers.routes.ts │ │ │ │ └── typeorm │ │ │ │ │ ├── entities │ │ │ │ │ └── Appointment.ts │ │ │ │ │ └── repositories │ │ │ │ │ └── AppointmentsRepository.ts │ │ │ ├── repositories │ │ │ │ ├── IAppointmentsRepository.ts │ │ │ │ └── fakes │ │ │ │ │ └── FakeAppointmentsRepository.ts │ │ │ └── services │ │ │ │ ├── CreateAppointmentService.spec.ts │ │ │ │ ├── CreateAppointmentService.ts │ │ │ │ ├── ListProviderAppointmentsService.spec.ts │ │ │ │ ├── ListProviderAppointmentsService.ts │ │ │ │ ├── ListProviderDayAvailabilityService.spec.ts │ │ │ │ ├── ListProviderDayAvailabilityService.ts │ │ │ │ ├── ListProviderMonthAvailabilityService.spec.ts │ │ │ │ ├── ListProviderMonthAvailabilityService.ts │ │ │ │ ├── ListProvidersService.spec.ts │ │ │ │ └── ListProvidersService.ts │ │ ├── notifications │ │ │ ├── dtos │ │ │ │ └── ICreateNotificationDTO.ts │ │ │ ├── infra │ │ │ │ └── typeorm │ │ │ │ │ ├── repositories │ │ │ │ │ └── NotificationsRepository.ts │ │ │ │ │ └── schemas │ │ │ │ │ └── Notification.ts │ │ │ └── repositories │ │ │ │ ├── INotificationsRepository.ts │ │ │ │ └── fakes │ │ │ │ └── FakeNotificationsRepository.ts │ │ └── users │ │ │ ├── dtos │ │ │ ├── ICreateUserDTO.ts │ │ │ └── IFindAllProvidersDTO.ts │ │ │ ├── infra │ │ │ ├── http │ │ │ │ ├── controllers │ │ │ │ │ ├── ForgotPasswordController.ts │ │ │ │ │ ├── ProfileController.ts │ │ │ │ │ ├── ResetPasswordController.ts │ │ │ │ │ ├── SessionsController.ts │ │ │ │ │ ├── UserAvatarController.ts │ │ │ │ │ └── UsersController.ts │ │ │ │ ├── middlewares │ │ │ │ │ └── ensureAuthenticated.ts │ │ │ │ └── routes │ │ │ │ │ ├── password.routes.ts │ │ │ │ │ ├── profile.routes.ts │ │ │ │ │ ├── sessions.routes.ts │ │ │ │ │ └── users.routes.ts │ │ │ └── typeorm │ │ │ │ ├── entities │ │ │ │ ├── User.ts │ │ │ │ └── UserToken.ts │ │ │ │ └── repositories │ │ │ │ ├── UserTokensRepository.ts │ │ │ │ └── UsersRepository.ts │ │ │ ├── providers │ │ │ ├── HashProvider │ │ │ │ ├── fakes │ │ │ │ │ └── FakeHashProvider.ts │ │ │ │ ├── implementations │ │ │ │ │ └── BCryptHashProvider.ts │ │ │ │ └── models │ │ │ │ │ └── IHashProvider.ts │ │ │ └── index.ts │ │ │ ├── repositories │ │ │ ├── IUserTokensRepository.ts │ │ │ ├── IUsersRepository.ts │ │ │ └── fakes │ │ │ │ ├── FakeUserTokensRepository.ts │ │ │ │ └── FakeUsersRepository.ts │ │ │ ├── services │ │ │ ├── AuthenticateUserService.spec.ts │ │ │ ├── AuthenticateUserService.ts │ │ │ ├── CreateUserService.spec.ts │ │ │ ├── CreateUserService.ts │ │ │ ├── ResetPasswordService.spec.ts │ │ │ ├── ResetPasswordService.ts │ │ │ ├── SendForgotPasswordEmailService.spec.ts │ │ │ ├── SendForgotPasswordEmailService.ts │ │ │ ├── ShowProfileService.spec.ts │ │ │ ├── ShowProfileService.ts │ │ │ ├── UpdateProfileService.spec.ts │ │ │ ├── UpdateProfileService.ts │ │ │ ├── UpdateUserAvatarService.spec.ts │ │ │ └── UpdateUserAvatarService.ts │ │ │ └── views │ │ │ └── forgot_password.hbs │ └── shared │ │ ├── container │ │ ├── index.ts │ │ └── providers │ │ │ ├── CacheProvider │ │ │ ├── fakes │ │ │ │ └── FakeCacheProvider.ts │ │ │ ├── implementations │ │ │ │ └── RedisCacheProvider.ts │ │ │ ├── index.ts │ │ │ └── models │ │ │ │ └── ICacheProvider.ts │ │ │ ├── MailProvider │ │ │ ├── dtos │ │ │ │ └── ISendMailDTO.ts │ │ │ ├── fakes │ │ │ │ └── FakeMailProvider.ts │ │ │ ├── implementations │ │ │ │ ├── EtherealMailProvider.ts │ │ │ │ └── SESMailProvider.ts │ │ │ ├── index.ts │ │ │ └── models │ │ │ │ └── IMailProvider.ts │ │ │ ├── MailTemplateProvider │ │ │ ├── dtos │ │ │ │ └── IParseMailTemplateDTO.ts │ │ │ ├── fakes │ │ │ │ └── FakeMailTemplateProvider.ts │ │ │ ├── implementations │ │ │ │ └── HandlebarsMailTemplateProvider.ts │ │ │ ├── index.ts │ │ │ └── models │ │ │ │ └── IMailTemplateProvider.ts │ │ │ ├── StorageProvider │ │ │ ├── fakes │ │ │ │ └── FakeStorageProvider.ts │ │ │ ├── implementations │ │ │ │ ├── DiskStorageProvider.ts │ │ │ │ └── S3StorageProvider.ts │ │ │ ├── index.ts │ │ │ └── models │ │ │ │ └── IStorageProvider.ts │ │ │ └── index.ts │ │ ├── errors │ │ └── AppError.ts │ │ └── infra │ │ ├── http │ │ ├── middlewares │ │ │ └── rateLimiter.ts │ │ ├── routes │ │ │ └── index.ts │ │ └── server.ts │ │ └── typeorm │ │ ├── index.ts │ │ └── migrations │ │ ├── 1586440901960-CreateAppointments.ts │ │ ├── 1586466429608-CreateUsers.ts │ │ ├── 1586467678042-AlterProviderFieldToProviderId.ts │ │ ├── 1586539940412-AddAvatarFieldToUsers.ts │ │ ├── 1588703882026-CreateUserTokens.ts │ │ └── 1588861202769-AddUserIdToAppointments.ts ├── tmp │ └── .gitkeep ├── tsconfig.json └── yarn.lock ├── 05-primeiro-projeto-react ├── .editorconfig ├── .eslintignore ├── .eslintrc.json ├── .gitignore ├── package.json ├── prettier.config.js ├── public │ ├── index.html │ └── robots.txt ├── src │ ├── App.tsx │ ├── assets │ │ ├── github-background.svg │ │ └── logo.svg │ ├── index.tsx │ ├── pages │ │ ├── Dashboard │ │ │ ├── index.tsx │ │ │ └── styles.ts │ │ └── Repository │ │ │ ├── index.tsx │ │ │ └── styles.ts │ ├── react-app-env.d.ts │ ├── routes │ │ └── index.tsx │ ├── services │ │ └── api.ts │ ├── setupTests.ts │ └── styles │ │ └── global.ts ├── tsconfig.json └── yarn.lock ├── 06-gobarber-web ├── .editorconfig ├── .env.example ├── .eslintignore ├── .eslintrc.json ├── .gitignore ├── package.json ├── prettier.config.js ├── public │ ├── index.html │ └── robots.txt ├── src │ ├── App.tsx │ ├── __tests__ │ │ ├── components │ │ │ └── Input.spec.tsx │ │ ├── hooks │ │ │ └── auth.spec.tsx │ │ └── pages │ │ │ └── SignIn.spec.tsx │ ├── assets │ │ ├── logo.svg │ │ ├── sign-in-background.png │ │ └── sign-up-background.png │ ├── components │ │ ├── Button │ │ │ ├── index.tsx │ │ │ └── styles.ts │ │ ├── Input │ │ │ ├── index.tsx │ │ │ └── styles.ts │ │ ├── ToastContainer │ │ │ ├── Toast │ │ │ │ ├── index.tsx │ │ │ │ └── styles.ts │ │ │ ├── index.tsx │ │ │ └── styles.ts │ │ └── Tooltip │ │ │ ├── index.tsx │ │ │ └── styles.ts │ ├── hooks │ │ ├── auth.tsx │ │ ├── index.tsx │ │ └── toast.tsx │ ├── index.tsx │ ├── pages │ │ ├── Dashboard │ │ │ ├── index.tsx │ │ │ └── styles.ts │ │ ├── ForgotPassword │ │ │ ├── index.tsx │ │ │ └── styles.ts │ │ ├── Profile │ │ │ ├── index.tsx │ │ │ └── styles.ts │ │ ├── ResetPassword │ │ │ ├── index.tsx │ │ │ └── styles.ts │ │ ├── SignIn │ │ │ ├── index.tsx │ │ │ └── styles.ts │ │ └── SignUp │ │ │ ├── index.tsx │ │ │ └── styles.ts │ ├── react-app-env.d.ts │ ├── routes │ │ ├── Route.tsx │ │ └── index.tsx │ ├── services │ │ └── api.ts │ ├── setupTests.ts │ ├── styles │ │ └── global.ts │ └── utils │ │ └── getValidationErrors.ts ├── tsconfig.json └── yarn.lock ├── README.md ├── appgobarber ├── .buckconfig ├── .editorconfig ├── .eslintignore ├── .eslintrc.json ├── .gitattributes ├── .gitignore ├── .watchmanconfig ├── __tests__ │ └── App-test.tsx ├── android │ ├── app │ │ ├── _BUCK │ │ ├── build.gradle │ │ ├── build_defs.bzl │ │ ├── debug.keystore │ │ ├── proguard-rules.pro │ │ └── src │ │ │ ├── debug │ │ │ ├── AndroidManifest.xml │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── appgobarber │ │ │ │ └── ReactNativeFlipper.java │ │ │ └── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── assets │ │ │ └── fonts │ │ │ │ ├── RobotoSlab-Medium.ttf │ │ │ │ └── RobotoSlab-Regular.ttf │ │ │ ├── java │ │ │ └── com │ │ │ │ └── appgobarber │ │ │ │ ├── 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 ├── assets │ └── fonts │ │ ├── RobotoSlab-Medium.ttf │ │ └── RobotoSlab-Regular.ttf ├── babel.config.js ├── index.js ├── ios │ ├── Podfile │ ├── Podfile.lock │ ├── appgobarber-tvOS │ │ └── Info.plist │ ├── appgobarber-tvOSTests │ │ └── Info.plist │ ├── appgobarber.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ ├── appgobarber-tvOS.xcscheme │ │ │ └── appgobarber.xcscheme │ ├── appgobarber.xcworkspace │ │ └── contents.xcworkspacedata │ ├── appgobarber │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── Base.lproj │ │ │ └── LaunchScreen.xib │ │ ├── Images.xcassets │ │ │ ├── AppIcon.appiconset │ │ │ │ └── Contents.json │ │ │ └── Contents.json │ │ ├── Info.plist │ │ └── main.m │ └── appgobarberTests │ │ ├── Info.plist │ │ └── appgobarberTests.m ├── metro.config.js ├── package.json ├── prettier.config.js ├── react-native.config.js ├── src │ ├── @types │ │ └── index.d.ts │ ├── App.tsx │ ├── assets.zip │ ├── assets │ │ ├── logo.png │ │ ├── logo@2x.png │ │ └── logo@3x.png │ ├── components │ │ ├── Button │ │ │ ├── index.tsx │ │ │ └── styles.ts │ │ └── Input │ │ │ ├── index.tsx │ │ │ └── styles.ts │ ├── hooks │ │ ├── auth.tsx │ │ └── index.tsx │ ├── pages │ │ ├── AppointmentCreated │ │ │ ├── index.tsx │ │ │ └── styles.ts │ │ ├── AppointmentDatePicker │ │ │ ├── index.tsx │ │ │ └── styles.ts │ │ ├── Dashboard │ │ │ ├── index.tsx │ │ │ └── styles.ts │ │ ├── Profile │ │ │ ├── index.tsx │ │ │ └── styles.ts │ │ ├── SignIn │ │ │ ├── index.tsx │ │ │ └── styles.ts │ │ └── SignUp │ │ │ ├── index.tsx │ │ │ └── styles.ts │ ├── routes │ │ ├── app.routes.tsx │ │ ├── auth.routes.tsx │ │ └── index.tsx │ ├── services │ │ └── api.ts │ └── utils │ │ └── getValidationErrors.ts ├── tsconfig.json └── yarn.lock └── fastfeet ├── .buckconfig ├── .eslintrc.js ├── .gitattributes ├── .gitignore ├── .prettierrc.js ├── .watchmanconfig ├── App.tsx ├── __tests__ └── App-test.tsx ├── android ├── app │ ├── _BUCK │ ├── build.gradle │ ├── build_defs.bzl │ ├── debug.keystore │ ├── proguard-rules.pro │ └── src │ │ ├── debug │ │ ├── AndroidManifest.xml │ │ └── java │ │ │ └── com │ │ │ └── fastfeet │ │ │ └── ReactNativeFlipper.java │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── ic_launcher-web.png │ │ ├── java │ │ └── com │ │ │ └── fastfeet │ │ │ ├── MainActivity.java │ │ │ ├── MainApplication.java │ │ │ └── SplashActivity.java │ │ └── res │ │ ├── drawable │ │ ├── background_splash.xml │ │ └── ic_launcher_foreground.xml │ │ ├── layout │ │ └── launch_screen.xml │ │ ├── mipmap-anydpi-v26 │ │ ├── ic_launcher.xml │ │ └── ic_launcher_round.xml │ │ ├── mipmap-hdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_round.png │ │ └── splash_icon.png │ │ ├── mipmap-mdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_round.png │ │ └── splash_icon.png │ │ ├── mipmap-xhdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_round.png │ │ └── splash_icon.png │ │ ├── mipmap-xxhdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_round.png │ │ └── splash_icon.png │ │ ├── mipmap-xxxhdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_round.png │ │ └── splash_icon.png │ │ └── values │ │ ├── colors.xml │ │ ├── ic_launcher_background.xml │ │ ├── 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 ├── Podfile.lock ├── fastfeet-tvOS │ └── Info.plist ├── fastfeet-tvOSTests │ └── Info.plist ├── fastfeet.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ ├── fastfeet-staging.xcscheme │ │ ├── fastfeet-tvOS.xcscheme │ │ └── fastfeet.xcscheme ├── fastfeet.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist ├── fastfeet │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Images.xcassets │ │ ├── AppIcon.appiconset │ │ │ ├── 01 iPhone Notifications 20pt@2x.png │ │ │ ├── 02 iPhone Notifications 20pt@3x.png │ │ │ ├── 04 iPhone Settings 29pt@2x.png │ │ │ ├── 05 iPhone Settings 29pt@3x.png │ │ │ ├── 06 iPhone Spotlight 40pt@2x.png │ │ │ ├── 07 iPhone Spotlight 40pt@3x.png │ │ │ ├── 08 iPhone App 60pt@2x.png │ │ │ ├── 09 iPhone App 60pt@3x.png │ │ │ ├── 19 App Store 1024pt.png │ │ │ └── Contents.json │ │ ├── Contents.json │ │ └── Image.imageset │ │ │ ├── Contents.json │ │ │ ├── Group 1.png │ │ │ ├── Group 1@2x.png │ │ │ └── Group 1@3x.png │ ├── Info.plist │ ├── LaunchScreen.storyboard │ └── main.m └── fastfeetTests │ ├── Info.plist │ └── fastfeetTests.m ├── metro.config.js ├── package.json ├── resources ├── icon.svg ├── icons │ ├── 01 iPhone Notifications 20pt@2x.png │ ├── 02 iPhone Notifications 20pt@3x.png │ ├── 03 iPhone Settings 29pt.png │ ├── 04 iPhone Settings 29pt@2x.png │ ├── 05 iPhone Settings 29pt@3x.png │ ├── 06 iPhone Spotlight 40pt@2x.png │ ├── 07 iPhone Spotlight 40pt@3x.png │ ├── 08 iPhone App 60pt@2x.png │ ├── 09 iPhone App 60pt@3x.png │ ├── 10 iPad Notifications 20pt.png │ ├── 11 iPad Notifications 20pt@2x.png │ ├── 12 iPad Settings 29pt.png │ ├── 13 iPad Settings 29pt@2x.png │ ├── 14 iPad Spotlight 40pt.png │ ├── 15 iPad Spotlight 40pt@2x.png │ ├── 16 iPad App 76pt.png │ ├── 17 iPad App 76pt@2x.png │ ├── 18 iPad Pro App 83.5pt@2x.png │ └── 19 App Store 1024pt.png ├── ios_splash_icon │ ├── Group 1.png │ ├── Group 1@2x.png │ └── Group 1@3x.png └── splash_icon.png ├── tsconfig.json └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules -------------------------------------------------------------------------------- /02-conceitos-dev/backend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/02-conceitos-dev/backend/package.json -------------------------------------------------------------------------------- /02-conceitos-dev/backend/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/02-conceitos-dev/backend/src/index.js -------------------------------------------------------------------------------- /02-conceitos-dev/backend/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/02-conceitos-dev/backend/yarn.lock -------------------------------------------------------------------------------- /02-conceitos-dev/frontend/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/02-conceitos-dev/frontend/babel.config.js -------------------------------------------------------------------------------- /02-conceitos-dev/frontend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/02-conceitos-dev/frontend/package.json -------------------------------------------------------------------------------- /02-conceitos-dev/frontend/public/bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/02-conceitos-dev/frontend/public/bundle.js -------------------------------------------------------------------------------- /02-conceitos-dev/frontend/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/02-conceitos-dev/frontend/public/index.html -------------------------------------------------------------------------------- /02-conceitos-dev/frontend/src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/02-conceitos-dev/frontend/src/App.css -------------------------------------------------------------------------------- /02-conceitos-dev/frontend/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/02-conceitos-dev/frontend/src/App.js -------------------------------------------------------------------------------- /02-conceitos-dev/frontend/src/components/Header.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/02-conceitos-dev/frontend/src/components/Header.js -------------------------------------------------------------------------------- /02-conceitos-dev/frontend/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/02-conceitos-dev/frontend/src/index.js -------------------------------------------------------------------------------- /02-conceitos-dev/frontend/src/services/api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/02-conceitos-dev/frontend/src/services/api.js -------------------------------------------------------------------------------- /02-conceitos-dev/frontend/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/02-conceitos-dev/frontend/webpack.config.js -------------------------------------------------------------------------------- /02-conceitos-dev/frontend/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/02-conceitos-dev/frontend/yarn.lock -------------------------------------------------------------------------------- /02-conceitos-dev/mobile/.buckconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/02-conceitos-dev/mobile/.buckconfig -------------------------------------------------------------------------------- /02-conceitos-dev/mobile/.flowconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/02-conceitos-dev/mobile/.flowconfig -------------------------------------------------------------------------------- /02-conceitos-dev/mobile/.gitattributes: -------------------------------------------------------------------------------- 1 | *.pbxproj -text 2 | -------------------------------------------------------------------------------- /02-conceitos-dev/mobile/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/02-conceitos-dev/mobile/.gitignore -------------------------------------------------------------------------------- /02-conceitos-dev/mobile/.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /02-conceitos-dev/mobile/__tests__/App-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/02-conceitos-dev/mobile/__tests__/App-test.js -------------------------------------------------------------------------------- /02-conceitos-dev/mobile/android/app/_BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/02-conceitos-dev/mobile/android/app/_BUCK -------------------------------------------------------------------------------- /02-conceitos-dev/mobile/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/02-conceitos-dev/mobile/android/app/build.gradle -------------------------------------------------------------------------------- /02-conceitos-dev/mobile/android/app/build_defs.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/02-conceitos-dev/mobile/android/app/build_defs.bzl -------------------------------------------------------------------------------- /02-conceitos-dev/mobile/android/app/debug.keystore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/02-conceitos-dev/mobile/android/app/debug.keystore -------------------------------------------------------------------------------- /02-conceitos-dev/mobile/android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/02-conceitos-dev/mobile/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /02-conceitos-dev/mobile/android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/02-conceitos-dev/mobile/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /02-conceitos-dev/mobile/android/app/src/debug/java/com/mobile/ReactNativeFlipper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/02-conceitos-dev/mobile/android/app/src/debug/java/com/mobile/ReactNativeFlipper.java -------------------------------------------------------------------------------- /02-conceitos-dev/mobile/android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/02-conceitos-dev/mobile/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /02-conceitos-dev/mobile/android/app/src/main/java/com/mobile/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/02-conceitos-dev/mobile/android/app/src/main/java/com/mobile/MainActivity.java -------------------------------------------------------------------------------- /02-conceitos-dev/mobile/android/app/src/main/java/com/mobile/MainApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/02-conceitos-dev/mobile/android/app/src/main/java/com/mobile/MainApplication.java -------------------------------------------------------------------------------- /02-conceitos-dev/mobile/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/02-conceitos-dev/mobile/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /02-conceitos-dev/mobile/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/02-conceitos-dev/mobile/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /02-conceitos-dev/mobile/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/02-conceitos-dev/mobile/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /02-conceitos-dev/mobile/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/02-conceitos-dev/mobile/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /02-conceitos-dev/mobile/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/02-conceitos-dev/mobile/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /02-conceitos-dev/mobile/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/02-conceitos-dev/mobile/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /02-conceitos-dev/mobile/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/02-conceitos-dev/mobile/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /02-conceitos-dev/mobile/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/02-conceitos-dev/mobile/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /02-conceitos-dev/mobile/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/02-conceitos-dev/mobile/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /02-conceitos-dev/mobile/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/02-conceitos-dev/mobile/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /02-conceitos-dev/mobile/android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/02-conceitos-dev/mobile/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /02-conceitos-dev/mobile/android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/02-conceitos-dev/mobile/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /02-conceitos-dev/mobile/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/02-conceitos-dev/mobile/android/build.gradle -------------------------------------------------------------------------------- /02-conceitos-dev/mobile/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/02-conceitos-dev/mobile/android/gradle.properties -------------------------------------------------------------------------------- /02-conceitos-dev/mobile/android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/02-conceitos-dev/mobile/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /02-conceitos-dev/mobile/android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/02-conceitos-dev/mobile/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /02-conceitos-dev/mobile/android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/02-conceitos-dev/mobile/android/gradlew -------------------------------------------------------------------------------- /02-conceitos-dev/mobile/android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/02-conceitos-dev/mobile/android/gradlew.bat -------------------------------------------------------------------------------- /02-conceitos-dev/mobile/android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/02-conceitos-dev/mobile/android/settings.gradle -------------------------------------------------------------------------------- /02-conceitos-dev/mobile/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/02-conceitos-dev/mobile/app.json -------------------------------------------------------------------------------- /02-conceitos-dev/mobile/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/02-conceitos-dev/mobile/babel.config.js -------------------------------------------------------------------------------- /02-conceitos-dev/mobile/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/02-conceitos-dev/mobile/index.js -------------------------------------------------------------------------------- /02-conceitos-dev/mobile/ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/02-conceitos-dev/mobile/ios/Podfile -------------------------------------------------------------------------------- /02-conceitos-dev/mobile/ios/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/02-conceitos-dev/mobile/ios/Podfile.lock -------------------------------------------------------------------------------- /02-conceitos-dev/mobile/ios/mobile-tvOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/02-conceitos-dev/mobile/ios/mobile-tvOS/Info.plist -------------------------------------------------------------------------------- /02-conceitos-dev/mobile/ios/mobile-tvOSTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/02-conceitos-dev/mobile/ios/mobile-tvOSTests/Info.plist -------------------------------------------------------------------------------- /02-conceitos-dev/mobile/ios/mobile.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/02-conceitos-dev/mobile/ios/mobile.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /02-conceitos-dev/mobile/ios/mobile.xcodeproj/xcshareddata/xcschemes/mobile-tvOS.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/02-conceitos-dev/mobile/ios/mobile.xcodeproj/xcshareddata/xcschemes/mobile-tvOS.xcscheme -------------------------------------------------------------------------------- /02-conceitos-dev/mobile/ios/mobile.xcodeproj/xcshareddata/xcschemes/mobile.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/02-conceitos-dev/mobile/ios/mobile.xcodeproj/xcshareddata/xcschemes/mobile.xcscheme -------------------------------------------------------------------------------- /02-conceitos-dev/mobile/ios/mobile.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/02-conceitos-dev/mobile/ios/mobile.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /02-conceitos-dev/mobile/ios/mobile/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/02-conceitos-dev/mobile/ios/mobile/AppDelegate.h -------------------------------------------------------------------------------- /02-conceitos-dev/mobile/ios/mobile/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/02-conceitos-dev/mobile/ios/mobile/AppDelegate.m -------------------------------------------------------------------------------- /02-conceitos-dev/mobile/ios/mobile/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/02-conceitos-dev/mobile/ios/mobile/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /02-conceitos-dev/mobile/ios/mobile/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/02-conceitos-dev/mobile/ios/mobile/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /02-conceitos-dev/mobile/ios/mobile/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/02-conceitos-dev/mobile/ios/mobile/Images.xcassets/Contents.json -------------------------------------------------------------------------------- /02-conceitos-dev/mobile/ios/mobile/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/02-conceitos-dev/mobile/ios/mobile/Info.plist -------------------------------------------------------------------------------- /02-conceitos-dev/mobile/ios/mobile/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/02-conceitos-dev/mobile/ios/mobile/main.m -------------------------------------------------------------------------------- /02-conceitos-dev/mobile/ios/mobileTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/02-conceitos-dev/mobile/ios/mobileTests/Info.plist -------------------------------------------------------------------------------- /02-conceitos-dev/mobile/ios/mobileTests/mobileTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/02-conceitos-dev/mobile/ios/mobileTests/mobileTests.m -------------------------------------------------------------------------------- /02-conceitos-dev/mobile/metro.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/02-conceitos-dev/mobile/metro.config.js -------------------------------------------------------------------------------- /02-conceitos-dev/mobile/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/02-conceitos-dev/mobile/package.json -------------------------------------------------------------------------------- /02-conceitos-dev/mobile/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/02-conceitos-dev/mobile/src/index.js -------------------------------------------------------------------------------- /02-conceitos-dev/mobile/src/services/api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/02-conceitos-dev/mobile/src/services/api.js -------------------------------------------------------------------------------- /02-conceitos-dev/mobile/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/02-conceitos-dev/mobile/yarn.lock -------------------------------------------------------------------------------- /02-conceitos-dev/typescript/dist/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/02-conceitos-dev/typescript/dist/index.js -------------------------------------------------------------------------------- /02-conceitos-dev/typescript/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/02-conceitos-dev/typescript/package.json -------------------------------------------------------------------------------- /02-conceitos-dev/typescript/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/02-conceitos-dev/typescript/src/index.ts -------------------------------------------------------------------------------- /02-conceitos-dev/typescript/src/routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/02-conceitos-dev/typescript/src/routes.ts -------------------------------------------------------------------------------- /02-conceitos-dev/typescript/src/services/CreateUser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/02-conceitos-dev/typescript/src/services/CreateUser.ts -------------------------------------------------------------------------------- /02-conceitos-dev/typescript/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/02-conceitos-dev/typescript/tsconfig.json -------------------------------------------------------------------------------- /02-conceitos-dev/typescript/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/02-conceitos-dev/typescript/yarn.lock -------------------------------------------------------------------------------- /03-primeiro-projeto-node/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/03-primeiro-projeto-node/package.json -------------------------------------------------------------------------------- /03-primeiro-projeto-node/src/server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/03-primeiro-projeto-node/src/server.ts -------------------------------------------------------------------------------- /03-primeiro-projeto-node/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/03-primeiro-projeto-node/tsconfig.json -------------------------------------------------------------------------------- /03-primeiro-projeto-node/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/03-primeiro-projeto-node/yarn.lock -------------------------------------------------------------------------------- /04-iniciando-back-end/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/04-iniciando-back-end/.editorconfig -------------------------------------------------------------------------------- /04-iniciando-back-end/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/04-iniciando-back-end/.env.example -------------------------------------------------------------------------------- /04-iniciando-back-end/.eslintignore: -------------------------------------------------------------------------------- 1 | /*.js 2 | node_modules 3 | dist 4 | -------------------------------------------------------------------------------- /04-iniciando-back-end/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/04-iniciando-back-end/.eslintrc.json -------------------------------------------------------------------------------- /04-iniciando-back-end/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/04-iniciando-back-end/.gitignore -------------------------------------------------------------------------------- /04-iniciando-back-end/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/04-iniciando-back-end/README.md -------------------------------------------------------------------------------- /04-iniciando-back-end/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/04-iniciando-back-end/babel.config.js -------------------------------------------------------------------------------- /04-iniciando-back-end/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/04-iniciando-back-end/jest.config.js -------------------------------------------------------------------------------- /04-iniciando-back-end/ormconfig.example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/04-iniciando-back-end/ormconfig.example.json -------------------------------------------------------------------------------- /04-iniciando-back-end/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/04-iniciando-back-end/package.json -------------------------------------------------------------------------------- /04-iniciando-back-end/prettier.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/04-iniciando-back-end/prettier.config.js -------------------------------------------------------------------------------- /04-iniciando-back-end/src/@types/express.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/04-iniciando-back-end/src/@types/express.d.ts -------------------------------------------------------------------------------- /04-iniciando-back-end/src/config/auth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/04-iniciando-back-end/src/config/auth.ts -------------------------------------------------------------------------------- /04-iniciando-back-end/src/config/cache.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/04-iniciando-back-end/src/config/cache.ts -------------------------------------------------------------------------------- /04-iniciando-back-end/src/config/mail.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/04-iniciando-back-end/src/config/mail.ts -------------------------------------------------------------------------------- /04-iniciando-back-end/src/config/upload.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/04-iniciando-back-end/src/config/upload.ts -------------------------------------------------------------------------------- /04-iniciando-back-end/src/modules/appointments/dtos/ICreateAppointmentDTO.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/04-iniciando-back-end/src/modules/appointments/dtos/ICreateAppointmentDTO.ts -------------------------------------------------------------------------------- /04-iniciando-back-end/src/modules/appointments/dtos/IFindAllInDayFromProviderDTO.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/04-iniciando-back-end/src/modules/appointments/dtos/IFindAllInDayFromProviderDTO.ts -------------------------------------------------------------------------------- /04-iniciando-back-end/src/modules/appointments/dtos/IFindAllInMonthFromProviderDTO.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/04-iniciando-back-end/src/modules/appointments/dtos/IFindAllInMonthFromProviderDTO.ts -------------------------------------------------------------------------------- /04-iniciando-back-end/src/modules/appointments/infra/http/controllers/AppointmentsController.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/04-iniciando-back-end/src/modules/appointments/infra/http/controllers/AppointmentsController.ts -------------------------------------------------------------------------------- /04-iniciando-back-end/src/modules/appointments/infra/http/controllers/ProviderAppointmentsController.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/04-iniciando-back-end/src/modules/appointments/infra/http/controllers/ProviderAppointmentsController.ts -------------------------------------------------------------------------------- /04-iniciando-back-end/src/modules/appointments/infra/http/controllers/ProviderDayAvailabilityController.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/04-iniciando-back-end/src/modules/appointments/infra/http/controllers/ProviderDayAvailabilityController.ts -------------------------------------------------------------------------------- /04-iniciando-back-end/src/modules/appointments/infra/http/controllers/ProviderMonthAvailabilityController.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/04-iniciando-back-end/src/modules/appointments/infra/http/controllers/ProviderMonthAvailabilityController.ts -------------------------------------------------------------------------------- /04-iniciando-back-end/src/modules/appointments/infra/http/controllers/ProvidersController.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/04-iniciando-back-end/src/modules/appointments/infra/http/controllers/ProvidersController.ts -------------------------------------------------------------------------------- /04-iniciando-back-end/src/modules/appointments/infra/http/routes/appointments.routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/04-iniciando-back-end/src/modules/appointments/infra/http/routes/appointments.routes.ts -------------------------------------------------------------------------------- /04-iniciando-back-end/src/modules/appointments/infra/http/routes/providers.routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/04-iniciando-back-end/src/modules/appointments/infra/http/routes/providers.routes.ts -------------------------------------------------------------------------------- /04-iniciando-back-end/src/modules/appointments/infra/typeorm/entities/Appointment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/04-iniciando-back-end/src/modules/appointments/infra/typeorm/entities/Appointment.ts -------------------------------------------------------------------------------- /04-iniciando-back-end/src/modules/appointments/infra/typeorm/repositories/AppointmentsRepository.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/04-iniciando-back-end/src/modules/appointments/infra/typeorm/repositories/AppointmentsRepository.ts -------------------------------------------------------------------------------- /04-iniciando-back-end/src/modules/appointments/repositories/IAppointmentsRepository.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/04-iniciando-back-end/src/modules/appointments/repositories/IAppointmentsRepository.ts -------------------------------------------------------------------------------- /04-iniciando-back-end/src/modules/appointments/repositories/fakes/FakeAppointmentsRepository.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/04-iniciando-back-end/src/modules/appointments/repositories/fakes/FakeAppointmentsRepository.ts -------------------------------------------------------------------------------- /04-iniciando-back-end/src/modules/appointments/services/CreateAppointmentService.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/04-iniciando-back-end/src/modules/appointments/services/CreateAppointmentService.spec.ts -------------------------------------------------------------------------------- /04-iniciando-back-end/src/modules/appointments/services/CreateAppointmentService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/04-iniciando-back-end/src/modules/appointments/services/CreateAppointmentService.ts -------------------------------------------------------------------------------- /04-iniciando-back-end/src/modules/appointments/services/ListProviderAppointmentsService.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/04-iniciando-back-end/src/modules/appointments/services/ListProviderAppointmentsService.spec.ts -------------------------------------------------------------------------------- /04-iniciando-back-end/src/modules/appointments/services/ListProviderAppointmentsService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/04-iniciando-back-end/src/modules/appointments/services/ListProviderAppointmentsService.ts -------------------------------------------------------------------------------- /04-iniciando-back-end/src/modules/appointments/services/ListProviderDayAvailabilityService.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/04-iniciando-back-end/src/modules/appointments/services/ListProviderDayAvailabilityService.spec.ts -------------------------------------------------------------------------------- /04-iniciando-back-end/src/modules/appointments/services/ListProviderDayAvailabilityService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/04-iniciando-back-end/src/modules/appointments/services/ListProviderDayAvailabilityService.ts -------------------------------------------------------------------------------- /04-iniciando-back-end/src/modules/appointments/services/ListProviderMonthAvailabilityService.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/04-iniciando-back-end/src/modules/appointments/services/ListProviderMonthAvailabilityService.spec.ts -------------------------------------------------------------------------------- /04-iniciando-back-end/src/modules/appointments/services/ListProviderMonthAvailabilityService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/04-iniciando-back-end/src/modules/appointments/services/ListProviderMonthAvailabilityService.ts -------------------------------------------------------------------------------- /04-iniciando-back-end/src/modules/appointments/services/ListProvidersService.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/04-iniciando-back-end/src/modules/appointments/services/ListProvidersService.spec.ts -------------------------------------------------------------------------------- /04-iniciando-back-end/src/modules/appointments/services/ListProvidersService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/04-iniciando-back-end/src/modules/appointments/services/ListProvidersService.ts -------------------------------------------------------------------------------- /04-iniciando-back-end/src/modules/notifications/dtos/ICreateNotificationDTO.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/04-iniciando-back-end/src/modules/notifications/dtos/ICreateNotificationDTO.ts -------------------------------------------------------------------------------- /04-iniciando-back-end/src/modules/notifications/infra/typeorm/repositories/NotificationsRepository.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/04-iniciando-back-end/src/modules/notifications/infra/typeorm/repositories/NotificationsRepository.ts -------------------------------------------------------------------------------- /04-iniciando-back-end/src/modules/notifications/infra/typeorm/schemas/Notification.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/04-iniciando-back-end/src/modules/notifications/infra/typeorm/schemas/Notification.ts -------------------------------------------------------------------------------- /04-iniciando-back-end/src/modules/notifications/repositories/INotificationsRepository.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/04-iniciando-back-end/src/modules/notifications/repositories/INotificationsRepository.ts -------------------------------------------------------------------------------- /04-iniciando-back-end/src/modules/notifications/repositories/fakes/FakeNotificationsRepository.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/04-iniciando-back-end/src/modules/notifications/repositories/fakes/FakeNotificationsRepository.ts -------------------------------------------------------------------------------- /04-iniciando-back-end/src/modules/users/dtos/ICreateUserDTO.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/04-iniciando-back-end/src/modules/users/dtos/ICreateUserDTO.ts -------------------------------------------------------------------------------- /04-iniciando-back-end/src/modules/users/dtos/IFindAllProvidersDTO.ts: -------------------------------------------------------------------------------- 1 | export default interface IFindAllProvidersDTO { 2 | except_user_id?: string; 3 | } 4 | -------------------------------------------------------------------------------- /04-iniciando-back-end/src/modules/users/infra/http/controllers/ForgotPasswordController.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/04-iniciando-back-end/src/modules/users/infra/http/controllers/ForgotPasswordController.ts -------------------------------------------------------------------------------- /04-iniciando-back-end/src/modules/users/infra/http/controllers/ProfileController.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/04-iniciando-back-end/src/modules/users/infra/http/controllers/ProfileController.ts -------------------------------------------------------------------------------- /04-iniciando-back-end/src/modules/users/infra/http/controllers/ResetPasswordController.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/04-iniciando-back-end/src/modules/users/infra/http/controllers/ResetPasswordController.ts -------------------------------------------------------------------------------- /04-iniciando-back-end/src/modules/users/infra/http/controllers/SessionsController.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/04-iniciando-back-end/src/modules/users/infra/http/controllers/SessionsController.ts -------------------------------------------------------------------------------- /04-iniciando-back-end/src/modules/users/infra/http/controllers/UserAvatarController.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/04-iniciando-back-end/src/modules/users/infra/http/controllers/UserAvatarController.ts -------------------------------------------------------------------------------- /04-iniciando-back-end/src/modules/users/infra/http/controllers/UsersController.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/04-iniciando-back-end/src/modules/users/infra/http/controllers/UsersController.ts -------------------------------------------------------------------------------- /04-iniciando-back-end/src/modules/users/infra/http/middlewares/ensureAuthenticated.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/04-iniciando-back-end/src/modules/users/infra/http/middlewares/ensureAuthenticated.ts -------------------------------------------------------------------------------- /04-iniciando-back-end/src/modules/users/infra/http/routes/password.routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/04-iniciando-back-end/src/modules/users/infra/http/routes/password.routes.ts -------------------------------------------------------------------------------- /04-iniciando-back-end/src/modules/users/infra/http/routes/profile.routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/04-iniciando-back-end/src/modules/users/infra/http/routes/profile.routes.ts -------------------------------------------------------------------------------- /04-iniciando-back-end/src/modules/users/infra/http/routes/sessions.routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/04-iniciando-back-end/src/modules/users/infra/http/routes/sessions.routes.ts -------------------------------------------------------------------------------- /04-iniciando-back-end/src/modules/users/infra/http/routes/users.routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/04-iniciando-back-end/src/modules/users/infra/http/routes/users.routes.ts -------------------------------------------------------------------------------- /04-iniciando-back-end/src/modules/users/infra/typeorm/entities/User.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/04-iniciando-back-end/src/modules/users/infra/typeorm/entities/User.ts -------------------------------------------------------------------------------- /04-iniciando-back-end/src/modules/users/infra/typeorm/entities/UserToken.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/04-iniciando-back-end/src/modules/users/infra/typeorm/entities/UserToken.ts -------------------------------------------------------------------------------- /04-iniciando-back-end/src/modules/users/infra/typeorm/repositories/UserTokensRepository.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/04-iniciando-back-end/src/modules/users/infra/typeorm/repositories/UserTokensRepository.ts -------------------------------------------------------------------------------- /04-iniciando-back-end/src/modules/users/infra/typeorm/repositories/UsersRepository.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/04-iniciando-back-end/src/modules/users/infra/typeorm/repositories/UsersRepository.ts -------------------------------------------------------------------------------- /04-iniciando-back-end/src/modules/users/providers/HashProvider/fakes/FakeHashProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/04-iniciando-back-end/src/modules/users/providers/HashProvider/fakes/FakeHashProvider.ts -------------------------------------------------------------------------------- /04-iniciando-back-end/src/modules/users/providers/HashProvider/implementations/BCryptHashProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/04-iniciando-back-end/src/modules/users/providers/HashProvider/implementations/BCryptHashProvider.ts -------------------------------------------------------------------------------- /04-iniciando-back-end/src/modules/users/providers/HashProvider/models/IHashProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/04-iniciando-back-end/src/modules/users/providers/HashProvider/models/IHashProvider.ts -------------------------------------------------------------------------------- /04-iniciando-back-end/src/modules/users/providers/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/04-iniciando-back-end/src/modules/users/providers/index.ts -------------------------------------------------------------------------------- /04-iniciando-back-end/src/modules/users/repositories/IUserTokensRepository.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/04-iniciando-back-end/src/modules/users/repositories/IUserTokensRepository.ts -------------------------------------------------------------------------------- /04-iniciando-back-end/src/modules/users/repositories/IUsersRepository.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/04-iniciando-back-end/src/modules/users/repositories/IUsersRepository.ts -------------------------------------------------------------------------------- /04-iniciando-back-end/src/modules/users/repositories/fakes/FakeUserTokensRepository.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/04-iniciando-back-end/src/modules/users/repositories/fakes/FakeUserTokensRepository.ts -------------------------------------------------------------------------------- /04-iniciando-back-end/src/modules/users/repositories/fakes/FakeUsersRepository.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/04-iniciando-back-end/src/modules/users/repositories/fakes/FakeUsersRepository.ts -------------------------------------------------------------------------------- /04-iniciando-back-end/src/modules/users/services/AuthenticateUserService.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/04-iniciando-back-end/src/modules/users/services/AuthenticateUserService.spec.ts -------------------------------------------------------------------------------- /04-iniciando-back-end/src/modules/users/services/AuthenticateUserService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/04-iniciando-back-end/src/modules/users/services/AuthenticateUserService.ts -------------------------------------------------------------------------------- /04-iniciando-back-end/src/modules/users/services/CreateUserService.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/04-iniciando-back-end/src/modules/users/services/CreateUserService.spec.ts -------------------------------------------------------------------------------- /04-iniciando-back-end/src/modules/users/services/CreateUserService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/04-iniciando-back-end/src/modules/users/services/CreateUserService.ts -------------------------------------------------------------------------------- /04-iniciando-back-end/src/modules/users/services/ResetPasswordService.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/04-iniciando-back-end/src/modules/users/services/ResetPasswordService.spec.ts -------------------------------------------------------------------------------- /04-iniciando-back-end/src/modules/users/services/ResetPasswordService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/04-iniciando-back-end/src/modules/users/services/ResetPasswordService.ts -------------------------------------------------------------------------------- /04-iniciando-back-end/src/modules/users/services/SendForgotPasswordEmailService.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/04-iniciando-back-end/src/modules/users/services/SendForgotPasswordEmailService.spec.ts -------------------------------------------------------------------------------- /04-iniciando-back-end/src/modules/users/services/SendForgotPasswordEmailService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/04-iniciando-back-end/src/modules/users/services/SendForgotPasswordEmailService.ts -------------------------------------------------------------------------------- /04-iniciando-back-end/src/modules/users/services/ShowProfileService.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/04-iniciando-back-end/src/modules/users/services/ShowProfileService.spec.ts -------------------------------------------------------------------------------- /04-iniciando-back-end/src/modules/users/services/ShowProfileService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/04-iniciando-back-end/src/modules/users/services/ShowProfileService.ts -------------------------------------------------------------------------------- /04-iniciando-back-end/src/modules/users/services/UpdateProfileService.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/04-iniciando-back-end/src/modules/users/services/UpdateProfileService.spec.ts -------------------------------------------------------------------------------- /04-iniciando-back-end/src/modules/users/services/UpdateProfileService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/04-iniciando-back-end/src/modules/users/services/UpdateProfileService.ts -------------------------------------------------------------------------------- /04-iniciando-back-end/src/modules/users/services/UpdateUserAvatarService.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/04-iniciando-back-end/src/modules/users/services/UpdateUserAvatarService.spec.ts -------------------------------------------------------------------------------- /04-iniciando-back-end/src/modules/users/services/UpdateUserAvatarService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/04-iniciando-back-end/src/modules/users/services/UpdateUserAvatarService.ts -------------------------------------------------------------------------------- /04-iniciando-back-end/src/modules/users/views/forgot_password.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/04-iniciando-back-end/src/modules/users/views/forgot_password.hbs -------------------------------------------------------------------------------- /04-iniciando-back-end/src/shared/container/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/04-iniciando-back-end/src/shared/container/index.ts -------------------------------------------------------------------------------- /04-iniciando-back-end/src/shared/container/providers/CacheProvider/fakes/FakeCacheProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/04-iniciando-back-end/src/shared/container/providers/CacheProvider/fakes/FakeCacheProvider.ts -------------------------------------------------------------------------------- /04-iniciando-back-end/src/shared/container/providers/CacheProvider/implementations/RedisCacheProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/04-iniciando-back-end/src/shared/container/providers/CacheProvider/implementations/RedisCacheProvider.ts -------------------------------------------------------------------------------- /04-iniciando-back-end/src/shared/container/providers/CacheProvider/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/04-iniciando-back-end/src/shared/container/providers/CacheProvider/index.ts -------------------------------------------------------------------------------- /04-iniciando-back-end/src/shared/container/providers/CacheProvider/models/ICacheProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/04-iniciando-back-end/src/shared/container/providers/CacheProvider/models/ICacheProvider.ts -------------------------------------------------------------------------------- /04-iniciando-back-end/src/shared/container/providers/MailProvider/dtos/ISendMailDTO.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/04-iniciando-back-end/src/shared/container/providers/MailProvider/dtos/ISendMailDTO.ts -------------------------------------------------------------------------------- /04-iniciando-back-end/src/shared/container/providers/MailProvider/fakes/FakeMailProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/04-iniciando-back-end/src/shared/container/providers/MailProvider/fakes/FakeMailProvider.ts -------------------------------------------------------------------------------- /04-iniciando-back-end/src/shared/container/providers/MailProvider/implementations/EtherealMailProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/04-iniciando-back-end/src/shared/container/providers/MailProvider/implementations/EtherealMailProvider.ts -------------------------------------------------------------------------------- /04-iniciando-back-end/src/shared/container/providers/MailProvider/implementations/SESMailProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/04-iniciando-back-end/src/shared/container/providers/MailProvider/implementations/SESMailProvider.ts -------------------------------------------------------------------------------- /04-iniciando-back-end/src/shared/container/providers/MailProvider/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/04-iniciando-back-end/src/shared/container/providers/MailProvider/index.ts -------------------------------------------------------------------------------- /04-iniciando-back-end/src/shared/container/providers/MailProvider/models/IMailProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/04-iniciando-back-end/src/shared/container/providers/MailProvider/models/IMailProvider.ts -------------------------------------------------------------------------------- /04-iniciando-back-end/src/shared/container/providers/MailTemplateProvider/dtos/IParseMailTemplateDTO.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/04-iniciando-back-end/src/shared/container/providers/MailTemplateProvider/dtos/IParseMailTemplateDTO.ts -------------------------------------------------------------------------------- /04-iniciando-back-end/src/shared/container/providers/MailTemplateProvider/fakes/FakeMailTemplateProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/04-iniciando-back-end/src/shared/container/providers/MailTemplateProvider/fakes/FakeMailTemplateProvider.ts -------------------------------------------------------------------------------- /04-iniciando-back-end/src/shared/container/providers/MailTemplateProvider/implementations/HandlebarsMailTemplateProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/04-iniciando-back-end/src/shared/container/providers/MailTemplateProvider/implementations/HandlebarsMailTemplateProvider.ts -------------------------------------------------------------------------------- /04-iniciando-back-end/src/shared/container/providers/MailTemplateProvider/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/04-iniciando-back-end/src/shared/container/providers/MailTemplateProvider/index.ts -------------------------------------------------------------------------------- /04-iniciando-back-end/src/shared/container/providers/MailTemplateProvider/models/IMailTemplateProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/04-iniciando-back-end/src/shared/container/providers/MailTemplateProvider/models/IMailTemplateProvider.ts -------------------------------------------------------------------------------- /04-iniciando-back-end/src/shared/container/providers/StorageProvider/fakes/FakeStorageProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/04-iniciando-back-end/src/shared/container/providers/StorageProvider/fakes/FakeStorageProvider.ts -------------------------------------------------------------------------------- /04-iniciando-back-end/src/shared/container/providers/StorageProvider/implementations/DiskStorageProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/04-iniciando-back-end/src/shared/container/providers/StorageProvider/implementations/DiskStorageProvider.ts -------------------------------------------------------------------------------- /04-iniciando-back-end/src/shared/container/providers/StorageProvider/implementations/S3StorageProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/04-iniciando-back-end/src/shared/container/providers/StorageProvider/implementations/S3StorageProvider.ts -------------------------------------------------------------------------------- /04-iniciando-back-end/src/shared/container/providers/StorageProvider/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/04-iniciando-back-end/src/shared/container/providers/StorageProvider/index.ts -------------------------------------------------------------------------------- /04-iniciando-back-end/src/shared/container/providers/StorageProvider/models/IStorageProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/04-iniciando-back-end/src/shared/container/providers/StorageProvider/models/IStorageProvider.ts -------------------------------------------------------------------------------- /04-iniciando-back-end/src/shared/container/providers/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/04-iniciando-back-end/src/shared/container/providers/index.ts -------------------------------------------------------------------------------- /04-iniciando-back-end/src/shared/errors/AppError.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/04-iniciando-back-end/src/shared/errors/AppError.ts -------------------------------------------------------------------------------- /04-iniciando-back-end/src/shared/infra/http/middlewares/rateLimiter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/04-iniciando-back-end/src/shared/infra/http/middlewares/rateLimiter.ts -------------------------------------------------------------------------------- /04-iniciando-back-end/src/shared/infra/http/routes/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/04-iniciando-back-end/src/shared/infra/http/routes/index.ts -------------------------------------------------------------------------------- /04-iniciando-back-end/src/shared/infra/http/server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/04-iniciando-back-end/src/shared/infra/http/server.ts -------------------------------------------------------------------------------- /04-iniciando-back-end/src/shared/infra/typeorm/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/04-iniciando-back-end/src/shared/infra/typeorm/index.ts -------------------------------------------------------------------------------- /04-iniciando-back-end/src/shared/infra/typeorm/migrations/1586440901960-CreateAppointments.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/04-iniciando-back-end/src/shared/infra/typeorm/migrations/1586440901960-CreateAppointments.ts -------------------------------------------------------------------------------- /04-iniciando-back-end/src/shared/infra/typeorm/migrations/1586466429608-CreateUsers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/04-iniciando-back-end/src/shared/infra/typeorm/migrations/1586466429608-CreateUsers.ts -------------------------------------------------------------------------------- /04-iniciando-back-end/src/shared/infra/typeorm/migrations/1586467678042-AlterProviderFieldToProviderId.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/04-iniciando-back-end/src/shared/infra/typeorm/migrations/1586467678042-AlterProviderFieldToProviderId.ts -------------------------------------------------------------------------------- /04-iniciando-back-end/src/shared/infra/typeorm/migrations/1586539940412-AddAvatarFieldToUsers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/04-iniciando-back-end/src/shared/infra/typeorm/migrations/1586539940412-AddAvatarFieldToUsers.ts -------------------------------------------------------------------------------- /04-iniciando-back-end/src/shared/infra/typeorm/migrations/1588703882026-CreateUserTokens.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/04-iniciando-back-end/src/shared/infra/typeorm/migrations/1588703882026-CreateUserTokens.ts -------------------------------------------------------------------------------- /04-iniciando-back-end/src/shared/infra/typeorm/migrations/1588861202769-AddUserIdToAppointments.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/04-iniciando-back-end/src/shared/infra/typeorm/migrations/1588861202769-AddUserIdToAppointments.ts -------------------------------------------------------------------------------- /04-iniciando-back-end/tmp/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /04-iniciando-back-end/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/04-iniciando-back-end/tsconfig.json -------------------------------------------------------------------------------- /04-iniciando-back-end/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/04-iniciando-back-end/yarn.lock -------------------------------------------------------------------------------- /05-primeiro-projeto-react/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/05-primeiro-projeto-react/.editorconfig -------------------------------------------------------------------------------- /05-primeiro-projeto-react/.eslintignore: -------------------------------------------------------------------------------- 1 | **/*.js 2 | node_modules 3 | build 4 | -------------------------------------------------------------------------------- /05-primeiro-projeto-react/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/05-primeiro-projeto-react/.eslintrc.json -------------------------------------------------------------------------------- /05-primeiro-projeto-react/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/05-primeiro-projeto-react/.gitignore -------------------------------------------------------------------------------- /05-primeiro-projeto-react/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/05-primeiro-projeto-react/package.json -------------------------------------------------------------------------------- /05-primeiro-projeto-react/prettier.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/05-primeiro-projeto-react/prettier.config.js -------------------------------------------------------------------------------- /05-primeiro-projeto-react/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/05-primeiro-projeto-react/public/index.html -------------------------------------------------------------------------------- /05-primeiro-projeto-react/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/05-primeiro-projeto-react/public/robots.txt -------------------------------------------------------------------------------- /05-primeiro-projeto-react/src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/05-primeiro-projeto-react/src/App.tsx -------------------------------------------------------------------------------- /05-primeiro-projeto-react/src/assets/github-background.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/05-primeiro-projeto-react/src/assets/github-background.svg -------------------------------------------------------------------------------- /05-primeiro-projeto-react/src/assets/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/05-primeiro-projeto-react/src/assets/logo.svg -------------------------------------------------------------------------------- /05-primeiro-projeto-react/src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/05-primeiro-projeto-react/src/index.tsx -------------------------------------------------------------------------------- /05-primeiro-projeto-react/src/pages/Dashboard/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/05-primeiro-projeto-react/src/pages/Dashboard/index.tsx -------------------------------------------------------------------------------- /05-primeiro-projeto-react/src/pages/Dashboard/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/05-primeiro-projeto-react/src/pages/Dashboard/styles.ts -------------------------------------------------------------------------------- /05-primeiro-projeto-react/src/pages/Repository/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/05-primeiro-projeto-react/src/pages/Repository/index.tsx -------------------------------------------------------------------------------- /05-primeiro-projeto-react/src/pages/Repository/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/05-primeiro-projeto-react/src/pages/Repository/styles.ts -------------------------------------------------------------------------------- /05-primeiro-projeto-react/src/react-app-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /05-primeiro-projeto-react/src/routes/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/05-primeiro-projeto-react/src/routes/index.tsx -------------------------------------------------------------------------------- /05-primeiro-projeto-react/src/services/api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/05-primeiro-projeto-react/src/services/api.ts -------------------------------------------------------------------------------- /05-primeiro-projeto-react/src/setupTests.ts: -------------------------------------------------------------------------------- 1 | import '@testing-library/jest-dom/extend-expect'; 2 | -------------------------------------------------------------------------------- /05-primeiro-projeto-react/src/styles/global.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/05-primeiro-projeto-react/src/styles/global.ts -------------------------------------------------------------------------------- /05-primeiro-projeto-react/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/05-primeiro-projeto-react/tsconfig.json -------------------------------------------------------------------------------- /05-primeiro-projeto-react/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/05-primeiro-projeto-react/yarn.lock -------------------------------------------------------------------------------- /06-gobarber-web/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/06-gobarber-web/.editorconfig -------------------------------------------------------------------------------- /06-gobarber-web/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/06-gobarber-web/.env.example -------------------------------------------------------------------------------- /06-gobarber-web/.eslintignore: -------------------------------------------------------------------------------- 1 | **/*.js 2 | node_modules 3 | build 4 | -------------------------------------------------------------------------------- /06-gobarber-web/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/06-gobarber-web/.eslintrc.json -------------------------------------------------------------------------------- /06-gobarber-web/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/06-gobarber-web/.gitignore -------------------------------------------------------------------------------- /06-gobarber-web/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/06-gobarber-web/package.json -------------------------------------------------------------------------------- /06-gobarber-web/prettier.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/06-gobarber-web/prettier.config.js -------------------------------------------------------------------------------- /06-gobarber-web/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/06-gobarber-web/public/index.html -------------------------------------------------------------------------------- /06-gobarber-web/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/06-gobarber-web/public/robots.txt -------------------------------------------------------------------------------- /06-gobarber-web/src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/06-gobarber-web/src/App.tsx -------------------------------------------------------------------------------- /06-gobarber-web/src/__tests__/components/Input.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/06-gobarber-web/src/__tests__/components/Input.spec.tsx -------------------------------------------------------------------------------- /06-gobarber-web/src/__tests__/hooks/auth.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/06-gobarber-web/src/__tests__/hooks/auth.spec.tsx -------------------------------------------------------------------------------- /06-gobarber-web/src/__tests__/pages/SignIn.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/06-gobarber-web/src/__tests__/pages/SignIn.spec.tsx -------------------------------------------------------------------------------- /06-gobarber-web/src/assets/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/06-gobarber-web/src/assets/logo.svg -------------------------------------------------------------------------------- /06-gobarber-web/src/assets/sign-in-background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/06-gobarber-web/src/assets/sign-in-background.png -------------------------------------------------------------------------------- /06-gobarber-web/src/assets/sign-up-background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/06-gobarber-web/src/assets/sign-up-background.png -------------------------------------------------------------------------------- /06-gobarber-web/src/components/Button/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/06-gobarber-web/src/components/Button/index.tsx -------------------------------------------------------------------------------- /06-gobarber-web/src/components/Button/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/06-gobarber-web/src/components/Button/styles.ts -------------------------------------------------------------------------------- /06-gobarber-web/src/components/Input/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/06-gobarber-web/src/components/Input/index.tsx -------------------------------------------------------------------------------- /06-gobarber-web/src/components/Input/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/06-gobarber-web/src/components/Input/styles.ts -------------------------------------------------------------------------------- /06-gobarber-web/src/components/ToastContainer/Toast/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/06-gobarber-web/src/components/ToastContainer/Toast/index.tsx -------------------------------------------------------------------------------- /06-gobarber-web/src/components/ToastContainer/Toast/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/06-gobarber-web/src/components/ToastContainer/Toast/styles.ts -------------------------------------------------------------------------------- /06-gobarber-web/src/components/ToastContainer/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/06-gobarber-web/src/components/ToastContainer/index.tsx -------------------------------------------------------------------------------- /06-gobarber-web/src/components/ToastContainer/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/06-gobarber-web/src/components/ToastContainer/styles.ts -------------------------------------------------------------------------------- /06-gobarber-web/src/components/Tooltip/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/06-gobarber-web/src/components/Tooltip/index.tsx -------------------------------------------------------------------------------- /06-gobarber-web/src/components/Tooltip/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/06-gobarber-web/src/components/Tooltip/styles.ts -------------------------------------------------------------------------------- /06-gobarber-web/src/hooks/auth.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/06-gobarber-web/src/hooks/auth.tsx -------------------------------------------------------------------------------- /06-gobarber-web/src/hooks/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/06-gobarber-web/src/hooks/index.tsx -------------------------------------------------------------------------------- /06-gobarber-web/src/hooks/toast.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/06-gobarber-web/src/hooks/toast.tsx -------------------------------------------------------------------------------- /06-gobarber-web/src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/06-gobarber-web/src/index.tsx -------------------------------------------------------------------------------- /06-gobarber-web/src/pages/Dashboard/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/06-gobarber-web/src/pages/Dashboard/index.tsx -------------------------------------------------------------------------------- /06-gobarber-web/src/pages/Dashboard/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/06-gobarber-web/src/pages/Dashboard/styles.ts -------------------------------------------------------------------------------- /06-gobarber-web/src/pages/ForgotPassword/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/06-gobarber-web/src/pages/ForgotPassword/index.tsx -------------------------------------------------------------------------------- /06-gobarber-web/src/pages/ForgotPassword/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/06-gobarber-web/src/pages/ForgotPassword/styles.ts -------------------------------------------------------------------------------- /06-gobarber-web/src/pages/Profile/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/06-gobarber-web/src/pages/Profile/index.tsx -------------------------------------------------------------------------------- /06-gobarber-web/src/pages/Profile/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/06-gobarber-web/src/pages/Profile/styles.ts -------------------------------------------------------------------------------- /06-gobarber-web/src/pages/ResetPassword/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/06-gobarber-web/src/pages/ResetPassword/index.tsx -------------------------------------------------------------------------------- /06-gobarber-web/src/pages/ResetPassword/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/06-gobarber-web/src/pages/ResetPassword/styles.ts -------------------------------------------------------------------------------- /06-gobarber-web/src/pages/SignIn/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/06-gobarber-web/src/pages/SignIn/index.tsx -------------------------------------------------------------------------------- /06-gobarber-web/src/pages/SignIn/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/06-gobarber-web/src/pages/SignIn/styles.ts -------------------------------------------------------------------------------- /06-gobarber-web/src/pages/SignUp/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/06-gobarber-web/src/pages/SignUp/index.tsx -------------------------------------------------------------------------------- /06-gobarber-web/src/pages/SignUp/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/06-gobarber-web/src/pages/SignUp/styles.ts -------------------------------------------------------------------------------- /06-gobarber-web/src/react-app-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /06-gobarber-web/src/routes/Route.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/06-gobarber-web/src/routes/Route.tsx -------------------------------------------------------------------------------- /06-gobarber-web/src/routes/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/06-gobarber-web/src/routes/index.tsx -------------------------------------------------------------------------------- /06-gobarber-web/src/services/api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/06-gobarber-web/src/services/api.ts -------------------------------------------------------------------------------- /06-gobarber-web/src/setupTests.ts: -------------------------------------------------------------------------------- 1 | import '@testing-library/jest-dom/extend-expect'; 2 | -------------------------------------------------------------------------------- /06-gobarber-web/src/styles/global.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/06-gobarber-web/src/styles/global.ts -------------------------------------------------------------------------------- /06-gobarber-web/src/utils/getValidationErrors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/06-gobarber-web/src/utils/getValidationErrors.ts -------------------------------------------------------------------------------- /06-gobarber-web/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/06-gobarber-web/tsconfig.json -------------------------------------------------------------------------------- /06-gobarber-web/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/06-gobarber-web/yarn.lock -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/README.md -------------------------------------------------------------------------------- /appgobarber/.buckconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/appgobarber/.buckconfig -------------------------------------------------------------------------------- /appgobarber/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/appgobarber/.editorconfig -------------------------------------------------------------------------------- /appgobarber/.eslintignore: -------------------------------------------------------------------------------- 1 | **/*.js 2 | node_modules 3 | build 4 | -------------------------------------------------------------------------------- /appgobarber/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/appgobarber/.eslintrc.json -------------------------------------------------------------------------------- /appgobarber/.gitattributes: -------------------------------------------------------------------------------- 1 | *.pbxproj -text 2 | -------------------------------------------------------------------------------- /appgobarber/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/appgobarber/.gitignore -------------------------------------------------------------------------------- /appgobarber/.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /appgobarber/__tests__/App-test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/appgobarber/__tests__/App-test.tsx -------------------------------------------------------------------------------- /appgobarber/android/app/_BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/appgobarber/android/app/_BUCK -------------------------------------------------------------------------------- /appgobarber/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/appgobarber/android/app/build.gradle -------------------------------------------------------------------------------- /appgobarber/android/app/build_defs.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/appgobarber/android/app/build_defs.bzl -------------------------------------------------------------------------------- /appgobarber/android/app/debug.keystore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/appgobarber/android/app/debug.keystore -------------------------------------------------------------------------------- /appgobarber/android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/appgobarber/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /appgobarber/android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/appgobarber/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /appgobarber/android/app/src/debug/java/com/appgobarber/ReactNativeFlipper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/appgobarber/android/app/src/debug/java/com/appgobarber/ReactNativeFlipper.java -------------------------------------------------------------------------------- /appgobarber/android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/appgobarber/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /appgobarber/android/app/src/main/assets/fonts/RobotoSlab-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/appgobarber/android/app/src/main/assets/fonts/RobotoSlab-Medium.ttf -------------------------------------------------------------------------------- /appgobarber/android/app/src/main/assets/fonts/RobotoSlab-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/appgobarber/android/app/src/main/assets/fonts/RobotoSlab-Regular.ttf -------------------------------------------------------------------------------- /appgobarber/android/app/src/main/java/com/appgobarber/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/appgobarber/android/app/src/main/java/com/appgobarber/MainActivity.java -------------------------------------------------------------------------------- /appgobarber/android/app/src/main/java/com/appgobarber/MainApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/appgobarber/android/app/src/main/java/com/appgobarber/MainApplication.java -------------------------------------------------------------------------------- /appgobarber/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/appgobarber/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /appgobarber/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/appgobarber/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /appgobarber/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/appgobarber/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /appgobarber/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/appgobarber/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /appgobarber/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/appgobarber/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /appgobarber/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/appgobarber/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /appgobarber/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/appgobarber/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /appgobarber/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/appgobarber/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /appgobarber/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/appgobarber/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /appgobarber/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/appgobarber/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /appgobarber/android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/appgobarber/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /appgobarber/android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/appgobarber/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /appgobarber/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/appgobarber/android/build.gradle -------------------------------------------------------------------------------- /appgobarber/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/appgobarber/android/gradle.properties -------------------------------------------------------------------------------- /appgobarber/android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/appgobarber/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /appgobarber/android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/appgobarber/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /appgobarber/android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/appgobarber/android/gradlew -------------------------------------------------------------------------------- /appgobarber/android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/appgobarber/android/gradlew.bat -------------------------------------------------------------------------------- /appgobarber/android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/appgobarber/android/settings.gradle -------------------------------------------------------------------------------- /appgobarber/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/appgobarber/app.json -------------------------------------------------------------------------------- /appgobarber/assets/fonts/RobotoSlab-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/appgobarber/assets/fonts/RobotoSlab-Medium.ttf -------------------------------------------------------------------------------- /appgobarber/assets/fonts/RobotoSlab-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/appgobarber/assets/fonts/RobotoSlab-Regular.ttf -------------------------------------------------------------------------------- /appgobarber/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/appgobarber/babel.config.js -------------------------------------------------------------------------------- /appgobarber/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/appgobarber/index.js -------------------------------------------------------------------------------- /appgobarber/ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/appgobarber/ios/Podfile -------------------------------------------------------------------------------- /appgobarber/ios/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/appgobarber/ios/Podfile.lock -------------------------------------------------------------------------------- /appgobarber/ios/appgobarber-tvOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/appgobarber/ios/appgobarber-tvOS/Info.plist -------------------------------------------------------------------------------- /appgobarber/ios/appgobarber-tvOSTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/appgobarber/ios/appgobarber-tvOSTests/Info.plist -------------------------------------------------------------------------------- /appgobarber/ios/appgobarber.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/appgobarber/ios/appgobarber.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /appgobarber/ios/appgobarber.xcodeproj/xcshareddata/xcschemes/appgobarber-tvOS.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/appgobarber/ios/appgobarber.xcodeproj/xcshareddata/xcschemes/appgobarber-tvOS.xcscheme -------------------------------------------------------------------------------- /appgobarber/ios/appgobarber.xcodeproj/xcshareddata/xcschemes/appgobarber.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/appgobarber/ios/appgobarber.xcodeproj/xcshareddata/xcschemes/appgobarber.xcscheme -------------------------------------------------------------------------------- /appgobarber/ios/appgobarber.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/appgobarber/ios/appgobarber.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /appgobarber/ios/appgobarber/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/appgobarber/ios/appgobarber/AppDelegate.h -------------------------------------------------------------------------------- /appgobarber/ios/appgobarber/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/appgobarber/ios/appgobarber/AppDelegate.m -------------------------------------------------------------------------------- /appgobarber/ios/appgobarber/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/appgobarber/ios/appgobarber/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /appgobarber/ios/appgobarber/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/appgobarber/ios/appgobarber/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /appgobarber/ios/appgobarber/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/appgobarber/ios/appgobarber/Images.xcassets/Contents.json -------------------------------------------------------------------------------- /appgobarber/ios/appgobarber/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/appgobarber/ios/appgobarber/Info.plist -------------------------------------------------------------------------------- /appgobarber/ios/appgobarber/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/appgobarber/ios/appgobarber/main.m -------------------------------------------------------------------------------- /appgobarber/ios/appgobarberTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/appgobarber/ios/appgobarberTests/Info.plist -------------------------------------------------------------------------------- /appgobarber/ios/appgobarberTests/appgobarberTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/appgobarber/ios/appgobarberTests/appgobarberTests.m -------------------------------------------------------------------------------- /appgobarber/metro.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/appgobarber/metro.config.js -------------------------------------------------------------------------------- /appgobarber/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/appgobarber/package.json -------------------------------------------------------------------------------- /appgobarber/prettier.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/appgobarber/prettier.config.js -------------------------------------------------------------------------------- /appgobarber/react-native.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/appgobarber/react-native.config.js -------------------------------------------------------------------------------- /appgobarber/src/@types/index.d.ts: -------------------------------------------------------------------------------- 1 | declare module '*.png'; 2 | -------------------------------------------------------------------------------- /appgobarber/src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/appgobarber/src/App.tsx -------------------------------------------------------------------------------- /appgobarber/src/assets.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/appgobarber/src/assets.zip -------------------------------------------------------------------------------- /appgobarber/src/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/appgobarber/src/assets/logo.png -------------------------------------------------------------------------------- /appgobarber/src/assets/logo@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/appgobarber/src/assets/logo@2x.png -------------------------------------------------------------------------------- /appgobarber/src/assets/logo@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/appgobarber/src/assets/logo@3x.png -------------------------------------------------------------------------------- /appgobarber/src/components/Button/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/appgobarber/src/components/Button/index.tsx -------------------------------------------------------------------------------- /appgobarber/src/components/Button/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/appgobarber/src/components/Button/styles.ts -------------------------------------------------------------------------------- /appgobarber/src/components/Input/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/appgobarber/src/components/Input/index.tsx -------------------------------------------------------------------------------- /appgobarber/src/components/Input/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/appgobarber/src/components/Input/styles.ts -------------------------------------------------------------------------------- /appgobarber/src/hooks/auth.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/appgobarber/src/hooks/auth.tsx -------------------------------------------------------------------------------- /appgobarber/src/hooks/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/appgobarber/src/hooks/index.tsx -------------------------------------------------------------------------------- /appgobarber/src/pages/AppointmentCreated/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/appgobarber/src/pages/AppointmentCreated/index.tsx -------------------------------------------------------------------------------- /appgobarber/src/pages/AppointmentCreated/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/appgobarber/src/pages/AppointmentCreated/styles.ts -------------------------------------------------------------------------------- /appgobarber/src/pages/AppointmentDatePicker/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/appgobarber/src/pages/AppointmentDatePicker/index.tsx -------------------------------------------------------------------------------- /appgobarber/src/pages/AppointmentDatePicker/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/appgobarber/src/pages/AppointmentDatePicker/styles.ts -------------------------------------------------------------------------------- /appgobarber/src/pages/Dashboard/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/appgobarber/src/pages/Dashboard/index.tsx -------------------------------------------------------------------------------- /appgobarber/src/pages/Dashboard/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/appgobarber/src/pages/Dashboard/styles.ts -------------------------------------------------------------------------------- /appgobarber/src/pages/Profile/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/appgobarber/src/pages/Profile/index.tsx -------------------------------------------------------------------------------- /appgobarber/src/pages/Profile/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/appgobarber/src/pages/Profile/styles.ts -------------------------------------------------------------------------------- /appgobarber/src/pages/SignIn/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/appgobarber/src/pages/SignIn/index.tsx -------------------------------------------------------------------------------- /appgobarber/src/pages/SignIn/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/appgobarber/src/pages/SignIn/styles.ts -------------------------------------------------------------------------------- /appgobarber/src/pages/SignUp/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/appgobarber/src/pages/SignUp/index.tsx -------------------------------------------------------------------------------- /appgobarber/src/pages/SignUp/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/appgobarber/src/pages/SignUp/styles.ts -------------------------------------------------------------------------------- /appgobarber/src/routes/app.routes.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/appgobarber/src/routes/app.routes.tsx -------------------------------------------------------------------------------- /appgobarber/src/routes/auth.routes.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/appgobarber/src/routes/auth.routes.tsx -------------------------------------------------------------------------------- /appgobarber/src/routes/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/appgobarber/src/routes/index.tsx -------------------------------------------------------------------------------- /appgobarber/src/services/api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/appgobarber/src/services/api.ts -------------------------------------------------------------------------------- /appgobarber/src/utils/getValidationErrors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/appgobarber/src/utils/getValidationErrors.ts -------------------------------------------------------------------------------- /appgobarber/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/appgobarber/tsconfig.json -------------------------------------------------------------------------------- /appgobarber/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/appgobarber/yarn.lock -------------------------------------------------------------------------------- /fastfeet/.buckconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/fastfeet/.buckconfig -------------------------------------------------------------------------------- /fastfeet/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/fastfeet/.eslintrc.js -------------------------------------------------------------------------------- /fastfeet/.gitattributes: -------------------------------------------------------------------------------- 1 | *.pbxproj -text 2 | -------------------------------------------------------------------------------- /fastfeet/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/fastfeet/.gitignore -------------------------------------------------------------------------------- /fastfeet/.prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/fastfeet/.prettierrc.js -------------------------------------------------------------------------------- /fastfeet/.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /fastfeet/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/fastfeet/App.tsx -------------------------------------------------------------------------------- /fastfeet/__tests__/App-test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/fastfeet/__tests__/App-test.tsx -------------------------------------------------------------------------------- /fastfeet/android/app/_BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/fastfeet/android/app/_BUCK -------------------------------------------------------------------------------- /fastfeet/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/fastfeet/android/app/build.gradle -------------------------------------------------------------------------------- /fastfeet/android/app/build_defs.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/fastfeet/android/app/build_defs.bzl -------------------------------------------------------------------------------- /fastfeet/android/app/debug.keystore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/fastfeet/android/app/debug.keystore -------------------------------------------------------------------------------- /fastfeet/android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/fastfeet/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /fastfeet/android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/fastfeet/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /fastfeet/android/app/src/debug/java/com/fastfeet/ReactNativeFlipper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/fastfeet/android/app/src/debug/java/com/fastfeet/ReactNativeFlipper.java -------------------------------------------------------------------------------- /fastfeet/android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/fastfeet/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /fastfeet/android/app/src/main/ic_launcher-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/fastfeet/android/app/src/main/ic_launcher-web.png -------------------------------------------------------------------------------- /fastfeet/android/app/src/main/java/com/fastfeet/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/fastfeet/android/app/src/main/java/com/fastfeet/MainActivity.java -------------------------------------------------------------------------------- /fastfeet/android/app/src/main/java/com/fastfeet/MainApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/fastfeet/android/app/src/main/java/com/fastfeet/MainApplication.java -------------------------------------------------------------------------------- /fastfeet/android/app/src/main/java/com/fastfeet/SplashActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/fastfeet/android/app/src/main/java/com/fastfeet/SplashActivity.java -------------------------------------------------------------------------------- /fastfeet/android/app/src/main/res/drawable/background_splash.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/fastfeet/android/app/src/main/res/drawable/background_splash.xml -------------------------------------------------------------------------------- /fastfeet/android/app/src/main/res/drawable/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/fastfeet/android/app/src/main/res/drawable/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /fastfeet/android/app/src/main/res/layout/launch_screen.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/fastfeet/android/app/src/main/res/layout/launch_screen.xml -------------------------------------------------------------------------------- /fastfeet/android/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/fastfeet/android/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /fastfeet/android/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/fastfeet/android/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /fastfeet/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/fastfeet/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /fastfeet/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/fastfeet/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /fastfeet/android/app/src/main/res/mipmap-hdpi/splash_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/fastfeet/android/app/src/main/res/mipmap-hdpi/splash_icon.png -------------------------------------------------------------------------------- /fastfeet/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/fastfeet/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /fastfeet/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/fastfeet/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /fastfeet/android/app/src/main/res/mipmap-mdpi/splash_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/fastfeet/android/app/src/main/res/mipmap-mdpi/splash_icon.png -------------------------------------------------------------------------------- /fastfeet/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/fastfeet/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /fastfeet/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/fastfeet/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /fastfeet/android/app/src/main/res/mipmap-xhdpi/splash_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/fastfeet/android/app/src/main/res/mipmap-xhdpi/splash_icon.png -------------------------------------------------------------------------------- /fastfeet/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/fastfeet/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /fastfeet/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/fastfeet/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /fastfeet/android/app/src/main/res/mipmap-xxhdpi/splash_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/fastfeet/android/app/src/main/res/mipmap-xxhdpi/splash_icon.png -------------------------------------------------------------------------------- /fastfeet/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/fastfeet/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /fastfeet/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/fastfeet/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /fastfeet/android/app/src/main/res/mipmap-xxxhdpi/splash_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/fastfeet/android/app/src/main/res/mipmap-xxxhdpi/splash_icon.png -------------------------------------------------------------------------------- /fastfeet/android/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/fastfeet/android/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /fastfeet/android/app/src/main/res/values/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/fastfeet/android/app/src/main/res/values/ic_launcher_background.xml -------------------------------------------------------------------------------- /fastfeet/android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/fastfeet/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /fastfeet/android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/fastfeet/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /fastfeet/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/fastfeet/android/build.gradle -------------------------------------------------------------------------------- /fastfeet/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/fastfeet/android/gradle.properties -------------------------------------------------------------------------------- /fastfeet/android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/fastfeet/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /fastfeet/android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/fastfeet/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /fastfeet/android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/fastfeet/android/gradlew -------------------------------------------------------------------------------- /fastfeet/android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/fastfeet/android/gradlew.bat -------------------------------------------------------------------------------- /fastfeet/android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/fastfeet/android/settings.gradle -------------------------------------------------------------------------------- /fastfeet/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/fastfeet/app.json -------------------------------------------------------------------------------- /fastfeet/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/fastfeet/babel.config.js -------------------------------------------------------------------------------- /fastfeet/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/fastfeet/index.js -------------------------------------------------------------------------------- /fastfeet/ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/fastfeet/ios/Podfile -------------------------------------------------------------------------------- /fastfeet/ios/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/fastfeet/ios/Podfile.lock -------------------------------------------------------------------------------- /fastfeet/ios/fastfeet-tvOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/fastfeet/ios/fastfeet-tvOS/Info.plist -------------------------------------------------------------------------------- /fastfeet/ios/fastfeet-tvOSTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/fastfeet/ios/fastfeet-tvOSTests/Info.plist -------------------------------------------------------------------------------- /fastfeet/ios/fastfeet.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/fastfeet/ios/fastfeet.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /fastfeet/ios/fastfeet.xcodeproj/xcshareddata/xcschemes/fastfeet-staging.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/fastfeet/ios/fastfeet.xcodeproj/xcshareddata/xcschemes/fastfeet-staging.xcscheme -------------------------------------------------------------------------------- /fastfeet/ios/fastfeet.xcodeproj/xcshareddata/xcschemes/fastfeet-tvOS.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/fastfeet/ios/fastfeet.xcodeproj/xcshareddata/xcschemes/fastfeet-tvOS.xcscheme -------------------------------------------------------------------------------- /fastfeet/ios/fastfeet.xcodeproj/xcshareddata/xcschemes/fastfeet.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/fastfeet/ios/fastfeet.xcodeproj/xcshareddata/xcschemes/fastfeet.xcscheme -------------------------------------------------------------------------------- /fastfeet/ios/fastfeet.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/fastfeet/ios/fastfeet.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /fastfeet/ios/fastfeet.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/fastfeet/ios/fastfeet.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /fastfeet/ios/fastfeet/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/fastfeet/ios/fastfeet/AppDelegate.h -------------------------------------------------------------------------------- /fastfeet/ios/fastfeet/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/fastfeet/ios/fastfeet/AppDelegate.m -------------------------------------------------------------------------------- /fastfeet/ios/fastfeet/Images.xcassets/AppIcon.appiconset/01 iPhone Notifications 20pt@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/fastfeet/ios/fastfeet/Images.xcassets/AppIcon.appiconset/01 iPhone Notifications 20pt@2x.png -------------------------------------------------------------------------------- /fastfeet/ios/fastfeet/Images.xcassets/AppIcon.appiconset/02 iPhone Notifications 20pt@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/fastfeet/ios/fastfeet/Images.xcassets/AppIcon.appiconset/02 iPhone Notifications 20pt@3x.png -------------------------------------------------------------------------------- /fastfeet/ios/fastfeet/Images.xcassets/AppIcon.appiconset/04 iPhone Settings 29pt@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/fastfeet/ios/fastfeet/Images.xcassets/AppIcon.appiconset/04 iPhone Settings 29pt@2x.png -------------------------------------------------------------------------------- /fastfeet/ios/fastfeet/Images.xcassets/AppIcon.appiconset/05 iPhone Settings 29pt@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/fastfeet/ios/fastfeet/Images.xcassets/AppIcon.appiconset/05 iPhone Settings 29pt@3x.png -------------------------------------------------------------------------------- /fastfeet/ios/fastfeet/Images.xcassets/AppIcon.appiconset/06 iPhone Spotlight 40pt@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/fastfeet/ios/fastfeet/Images.xcassets/AppIcon.appiconset/06 iPhone Spotlight 40pt@2x.png -------------------------------------------------------------------------------- /fastfeet/ios/fastfeet/Images.xcassets/AppIcon.appiconset/07 iPhone Spotlight 40pt@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/fastfeet/ios/fastfeet/Images.xcassets/AppIcon.appiconset/07 iPhone Spotlight 40pt@3x.png -------------------------------------------------------------------------------- /fastfeet/ios/fastfeet/Images.xcassets/AppIcon.appiconset/08 iPhone App 60pt@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/fastfeet/ios/fastfeet/Images.xcassets/AppIcon.appiconset/08 iPhone App 60pt@2x.png -------------------------------------------------------------------------------- /fastfeet/ios/fastfeet/Images.xcassets/AppIcon.appiconset/09 iPhone App 60pt@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/fastfeet/ios/fastfeet/Images.xcassets/AppIcon.appiconset/09 iPhone App 60pt@3x.png -------------------------------------------------------------------------------- /fastfeet/ios/fastfeet/Images.xcassets/AppIcon.appiconset/19 App Store 1024pt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/fastfeet/ios/fastfeet/Images.xcassets/AppIcon.appiconset/19 App Store 1024pt.png -------------------------------------------------------------------------------- /fastfeet/ios/fastfeet/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/fastfeet/ios/fastfeet/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /fastfeet/ios/fastfeet/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/fastfeet/ios/fastfeet/Images.xcassets/Contents.json -------------------------------------------------------------------------------- /fastfeet/ios/fastfeet/Images.xcassets/Image.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/fastfeet/ios/fastfeet/Images.xcassets/Image.imageset/Contents.json -------------------------------------------------------------------------------- /fastfeet/ios/fastfeet/Images.xcassets/Image.imageset/Group 1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/fastfeet/ios/fastfeet/Images.xcassets/Image.imageset/Group 1.png -------------------------------------------------------------------------------- /fastfeet/ios/fastfeet/Images.xcassets/Image.imageset/Group 1@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/fastfeet/ios/fastfeet/Images.xcassets/Image.imageset/Group 1@2x.png -------------------------------------------------------------------------------- /fastfeet/ios/fastfeet/Images.xcassets/Image.imageset/Group 1@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/fastfeet/ios/fastfeet/Images.xcassets/Image.imageset/Group 1@3x.png -------------------------------------------------------------------------------- /fastfeet/ios/fastfeet/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/fastfeet/ios/fastfeet/Info.plist -------------------------------------------------------------------------------- /fastfeet/ios/fastfeet/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/fastfeet/ios/fastfeet/LaunchScreen.storyboard -------------------------------------------------------------------------------- /fastfeet/ios/fastfeet/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/fastfeet/ios/fastfeet/main.m -------------------------------------------------------------------------------- /fastfeet/ios/fastfeetTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/fastfeet/ios/fastfeetTests/Info.plist -------------------------------------------------------------------------------- /fastfeet/ios/fastfeetTests/fastfeetTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/fastfeet/ios/fastfeetTests/fastfeetTests.m -------------------------------------------------------------------------------- /fastfeet/metro.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/fastfeet/metro.config.js -------------------------------------------------------------------------------- /fastfeet/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/fastfeet/package.json -------------------------------------------------------------------------------- /fastfeet/resources/icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/fastfeet/resources/icon.svg -------------------------------------------------------------------------------- /fastfeet/resources/icons/01 iPhone Notifications 20pt@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/fastfeet/resources/icons/01 iPhone Notifications 20pt@2x.png -------------------------------------------------------------------------------- /fastfeet/resources/icons/02 iPhone Notifications 20pt@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/fastfeet/resources/icons/02 iPhone Notifications 20pt@3x.png -------------------------------------------------------------------------------- /fastfeet/resources/icons/03 iPhone Settings 29pt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/fastfeet/resources/icons/03 iPhone Settings 29pt.png -------------------------------------------------------------------------------- /fastfeet/resources/icons/04 iPhone Settings 29pt@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/fastfeet/resources/icons/04 iPhone Settings 29pt@2x.png -------------------------------------------------------------------------------- /fastfeet/resources/icons/05 iPhone Settings 29pt@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/fastfeet/resources/icons/05 iPhone Settings 29pt@3x.png -------------------------------------------------------------------------------- /fastfeet/resources/icons/06 iPhone Spotlight 40pt@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/fastfeet/resources/icons/06 iPhone Spotlight 40pt@2x.png -------------------------------------------------------------------------------- /fastfeet/resources/icons/07 iPhone Spotlight 40pt@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/fastfeet/resources/icons/07 iPhone Spotlight 40pt@3x.png -------------------------------------------------------------------------------- /fastfeet/resources/icons/08 iPhone App 60pt@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/fastfeet/resources/icons/08 iPhone App 60pt@2x.png -------------------------------------------------------------------------------- /fastfeet/resources/icons/09 iPhone App 60pt@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/fastfeet/resources/icons/09 iPhone App 60pt@3x.png -------------------------------------------------------------------------------- /fastfeet/resources/icons/10 iPad Notifications 20pt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/fastfeet/resources/icons/10 iPad Notifications 20pt.png -------------------------------------------------------------------------------- /fastfeet/resources/icons/11 iPad Notifications 20pt@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/fastfeet/resources/icons/11 iPad Notifications 20pt@2x.png -------------------------------------------------------------------------------- /fastfeet/resources/icons/12 iPad Settings 29pt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/fastfeet/resources/icons/12 iPad Settings 29pt.png -------------------------------------------------------------------------------- /fastfeet/resources/icons/13 iPad Settings 29pt@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/fastfeet/resources/icons/13 iPad Settings 29pt@2x.png -------------------------------------------------------------------------------- /fastfeet/resources/icons/14 iPad Spotlight 40pt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/fastfeet/resources/icons/14 iPad Spotlight 40pt.png -------------------------------------------------------------------------------- /fastfeet/resources/icons/15 iPad Spotlight 40pt@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/fastfeet/resources/icons/15 iPad Spotlight 40pt@2x.png -------------------------------------------------------------------------------- /fastfeet/resources/icons/16 iPad App 76pt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/fastfeet/resources/icons/16 iPad App 76pt.png -------------------------------------------------------------------------------- /fastfeet/resources/icons/17 iPad App 76pt@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/fastfeet/resources/icons/17 iPad App 76pt@2x.png -------------------------------------------------------------------------------- /fastfeet/resources/icons/18 iPad Pro App 83.5pt@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/fastfeet/resources/icons/18 iPad Pro App 83.5pt@2x.png -------------------------------------------------------------------------------- /fastfeet/resources/icons/19 App Store 1024pt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/fastfeet/resources/icons/19 App Store 1024pt.png -------------------------------------------------------------------------------- /fastfeet/resources/ios_splash_icon/Group 1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/fastfeet/resources/ios_splash_icon/Group 1.png -------------------------------------------------------------------------------- /fastfeet/resources/ios_splash_icon/Group 1@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/fastfeet/resources/ios_splash_icon/Group 1@2x.png -------------------------------------------------------------------------------- /fastfeet/resources/ios_splash_icon/Group 1@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/fastfeet/resources/ios_splash_icon/Group 1@3x.png -------------------------------------------------------------------------------- /fastfeet/resources/splash_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/fastfeet/resources/splash_icon.png -------------------------------------------------------------------------------- /fastfeet/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/fastfeet/tsconfig.json -------------------------------------------------------------------------------- /fastfeet/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-apps/HEAD/fastfeet/yarn.lock --------------------------------------------------------------------------------