Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: okryuk/gophercon-gatsby-proto
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: main
Choose a base ref
...
head repository: gopheracademy/gophercon-gatsby-proto
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: main
Choose a head ref
Able to merge. These branches can be automatically merged.
  • 2 commits
  • 53 files changed
  • 1 contributor

Commits on Dec 13, 2020

  1. update packages

    bketelsen committed Dec 13, 2020
    Copy the full SHA
    6487655 View commit details

Commits on Dec 15, 2020

  1. auth

    bketelsen committed Dec 15, 2020
    Copy the full SHA
    7f21b1b View commit details
Showing with 4,241 additions and 18,326 deletions.
  1. +19 −0 .gitignore
  2. +11 −0 .vscode/settings.json
  3. +17 −0 amplify/.config/project-config.json
  4. +387 −0 amplify/backend/auth/cognito704b3e59/cognito704b3e59-cloudformation-template.yml
  5. +71 −0 amplify/backend/auth/cognito704b3e59/parameters.json
  6. +8 −0 amplify/backend/backend-config.json
  7. +20 −0 amplify/team-provider-info.json
  8. +18 −1 gatsby-browser.js
  9. +19 −0 gatsby-node.js
  10. +2,173 −18,290 package-lock.json
  11. +4 −1 package.json
  12. 0 {src → src-before}/components/bodyBuilder/index.js
  13. 0 {src → src-before}/components/bodyComponents/featuredSpeakers/featuredSpeakers.module.css
  14. 0 {src → src-before}/components/bodyComponents/featuredSpeakers/index.js
  15. 0 {src → src-before}/components/bodyComponents/featuredTalks/featuredTalks.module.css
  16. 0 {src → src-before}/components/bodyComponents/featuredTalks/index.js
  17. 0 {src → src-before}/components/bodyComponents/mainBanner/index.js
  18. 0 {src → src-before}/components/bodyComponents/mainBanner/mainBanner.module.css
  19. 0 {src → src-before}/components/bodyComponents/purchase/index.js
  20. 0 {src → src-before}/components/bodyComponents/purchase/purchase.module.css
  21. 0 {src → src-before}/components/bodyComponents/textBlockBtn/index.js
  22. 0 {src → src-before}/components/bodyComponents/textBlockBtn/textBlockBtn.module.css
  23. 0 {src → src-before}/components/footer/footer.module.css
  24. 0 {src → src-before}/components/footer/index.js
  25. 0 {src → src-before}/components/navigation/Logo/index.js
  26. 0 {src → src-before}/components/navigation/Logo/logo.module.css
  27. +2 −2 {src → src-before}/components/navigation/navbar/index.js
  28. 0 {src → src-before}/components/navigation/navbar/navbar.module.css
  29. 0 {src → src-before}/components/navigation/navigationItems/index.js
  30. 0 {src → src-before}/components/navigation/navigationItems/navigationItems.module.css
  31. 0 {src → src-before}/components/seo/index.js
  32. +317 −0 src-before/data/indexpage.json
  33. 0 {src → src-before}/hooks/use-footer-metadata.js
  34. 0 {src → src-before}/hooks/use-page-metadata.js
  35. +36 −0 src-before/pages/index.js
  36. +25 −0 src-before/styles/global.css
  37. +26 −0 src-before/utils/auth.js
  38. +19 −0 src/components/Details.js
  39. +18 −0 src/components/Error.js
  40. +10 −0 src/components/Home.js
  41. +85 −0 src/components/Login.js
  42. +17 −0 src/components/PrivateRoute.js
  43. +131 −0 src/components/SignUp.js
  44. +57 −0 src/components/header.js
  45. +624 −0 src/components/layout.css
  46. +51 −0 src/components/layout.js
  47. BIN src/images/amplify-console.gif
  48. BIN src/images/gatby-auth.gif
  49. BIN src/images/gatsby-icon.png
  50. +11 −0 src/pages/404.js
  51. +22 −0 src/pages/app.js
  52. +17 −32 src/pages/index.js
  53. +26 −0 src/utils/auth.js
19 changes: 19 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -67,3 +67,22 @@ yarn-error.log
.pnp.js
# Yarn Integrity file
.yarn-integrity

#amplify
amplify/\#current-cloud-backend
amplify/.config/local-*
amplify/logs
amplify/mock-data
amplify/backend/amplify-meta.json
amplify/backend/awscloudformation
amplify/backend/.temp
build/
dist/
node_modules/
aws-exports.js
awsconfiguration.json
amplifyconfiguration.json
amplify-build-config.json
amplify-gradle-config.json
amplifytools.xcconfig
.secret-*
11 changes: 11 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
{
"files.exclude": {
"amplify/.config": true,
"amplify/**/*-parameters.json": true,
"amplify/**/amplify.state": true,
"amplify/**/transform.conf.json": true,
"amplify/#current-cloud-backend": true,
"amplify/backend/amplify-meta.json": true,
"amplify/backend/awscloudformation": true
}
}
17 changes: 17 additions & 0 deletions amplify/.config/project-config.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
{
"projectName": "my-aws-project",
"version": "3.0",
"frontend": "javascript",
"javascript": {
"framework": "react",
"config": {
"SourceDir": "src",
"DistributionDir": "build",
"BuildCommand": "npm run-script build",
"StartCommand": "npm run-script start"
}
},
"providers": [
"awscloudformation"
]
}
Loading