Этот материал находится в платной подписке. Оформи премиум подписку и смотри или слушай Let's Build a Go version of Laravel, а также все другие курсы, прямо сейчас!
Премиум
  1. Урок 1. 00:08:16
    Introduction
  2. Урок 2. 00:01:02
    A bit about me
  3. Урок 3. 00:01:15
    How to ask for help
  4. Урок 4. 00:01:40
    Install Go
  5. Урок 5. 00:01:18
    Install VS Code
  6. Урок 6. 00:01:28
    Install Make
  7. Урок 7. 00:08:23
    Setting up project structure
  8. Урок 8. 00:04:19
    Keeping our application and package in sync with Make
  9. Урок 9. 00:09:06
    Starting work on Celeritas
  10. Урок 10. 00:05:45
    Creating application folders
  11. Урок 11. 00:08:52
    Creating and reading the .env file
  12. Урок 12. 00:07:13
    Creating logs
  13. Урок 13. 00:03:30
    Setting up Celeritas configuration
  14. Урок 14. 00:11:16
    Getting a simple web server up and running
  15. Урок 15. 00:13:13
    Implementing a page renderer in the Celeritas package (for Go templates)
  16. Урок 16. 00:12:39
    Trying out the Go render functionality
  17. Урок 17. 00:01:27
    Cleaning up Celeritas
  18. Урок 18. 00:09:35
    Adding Jet support to our page rendering package
  19. Урок 19. 00:02:23
    Rendering a Jet Template
  20. Урок 20. 00:07:08
    Working with Jet Templates
  21. Урок 21. 00:09:10
    Testing the render package
  22. Урок 22. 00:09:10
    Writing more tests for the render package
  23. Урок 23. 00:08:27
    Simplifying our tests using Table Tests
  24. Урок 24. 00:05:52
    Implementing Sessions in Celeritas
  25. Урок 25. 00:18:04
    Choosing and Installing a session package
  26. Урок 26. 00:03:00
    Adding session middleware
  27. Урок 27. 00:05:41
    Verifying that sessions work with myapp
  28. Урок 28. 00:02:53
    Reading data from the session and passing it to the Jet template
  29. Урок 29. 00:08:23
    Writing tests for the session package
  30. Урок 30. 00:02:06
    Checking our Coverage
  31. Урок 31. 00:01:24
    Installing Docker
  32. Урок 32. 00:06:49
    Bringing up and tearing down a development environment using docker-compose
  33. Урок 33. 00:06:44
    Getting started with Postgres
  34. Урок 34. 00:10:47
    Building a Postgres connection string and connecting to the database
  35. Урок 35. 00:07:40
    Trying out our database connection
  36. Урок 36. 00:07:57
    Adding ORM like functionality to our application with upper/db
  37. Урок 37. 00:20:38
    Creating a real users table and a user model
  38. Урок 38. 00:17:14
    Additional database functions for the User type
  39. Урок 39. 00:02:50
    Finishing up the database functions for the User model
  40. Урок 40. 00:06:13
    Inserting a user
  41. Урок 41. 00:13:24
    Testing other database functions on the User model
  42. Урок 42. 00:13:58
    Creating a login page and handler
  43. Урок 43. 00:18:41
    Creating the post handler for logging in
  44. Урок 44. 00:26:34
    Adding functions to the Tokens model
  45. Урок 45. 00:11:25
    Writing tests for models.go
  46. Урок 46. 00:17:55
    Getting started with our integration tests
  47. Урок 47. 00:18:51
    Creating tables in our test docker image, and running some tests
  48. Урок 48. 00:22:01
    Continuing to write integration tests
  49. Урок 49. 00:34:28
    Finishing up our integration tests
  50. Урок 50. 00:03:59
    Cleaning up our tests
  51. Урок 51. 00:15:48
    Setting up a simple CLI package in Celeritas
  52. Урок 52. 00:10:23
    Adding support for migrations to the Celeritas package
  53. Урок 53. 00:07:58
    Starting work on "make migration" in our CLI application
  54. Урок 54. 00:09:23
    Using templates in our CLI
  55. Урок 55. 00:05:08
    Trying out our make migration functionality
  56. Урок 56. 00:13:39
    Running migrations
  57. Урок 57. 00:07:04
    Trying out our "make migrate" commands with the Celeritas CLI
  58. Урок 58. 00:07:57
    Getting started with Implementing "make auth" functionality
  59. Урок 59. 00:03:01
    Trying out the make auth functionality
  60. Урок 60. 00:07:55
    Continuing with the "make auth" functionality in our command line program
  61. Урок 61. 00:12:30
    Creating simple auth middleware, and adding it to the "make auth" command
  62. Урок 62. 00:03:14
    Installing our auth middleware with the celeritas command line utility
  63. Урок 63. 00:04:46
    Trying out our improved make auth functionality
  64. Урок 64. 00:09:19
    Implementing "make handler" functionality
  65. Урок 65. 00:10:13
    Implementing "make model" functionality
  66. Урок 66. 00:11:26
    Adding database stores to our sessions package
  67. Урок 67. 00:06:12
    Adding support for database session store to the celeritas project
  68. Урок 68. 00:01:38
    Supporting MySQL/MariaDB with"make auth"
  69. Урок 69. 00:13:11
    Creating a validation package
  70. Урок 70. 00:04:02
    Trying out our validation
  71. Урок 71. 00:02:40
    Adding validation to models
  72. Урок 72. 00:02:08
    Trying out our model validation
  73. Урок 73. 00:08:22
    Building a simple form and performing validation on it
  74. Урок 74. 00:07:03
    Building our PostForm handler with validation
  75. Урок 75. 00:04:03
    Helper functions for the routes file
  76. Урок 76. 00:07:14
    Helper functions for handlers
  77. Урок 77. 00:09:46
    JSON, XML, and other response types
  78. Урок 78. 00:06:32
    Creating handlers for our response types
  79. Урок 79. 00:04:59
    Creating the routes and links for our response types
  80. Урок 80. 00:12:25
    Ecryption/Decryption
  81. Урок 81. 00:04:48
    Generating and getting our encryption key
  82. Урок 82. 00:07:56
    Trying out our encryption functionality
  83. Урок 83. 00:10:23
    Installing the necessary package and getting started
  84. Урок 84. 00:13:53
    Connecting to Redis
  85. Урок 85. 00:18:50
    Completing the rest of the cache functions
  86. Урок 86. 00:19:42
    Testing the cache package
  87. Урок 87. 00:13:07
    Trying out the cache in myapp
  88. Урок 88. 00:10:39
    Finishing up our cache page in myapp
  89. Урок 89. 00:07:32
    Adding a Redis store to our sessions package
  90. Урок 90. 00:16:09
    CSRF Protection
  91. Урок 91. 00:09:57
    Speeding up templates
  92. Урок 92. 00:26:22
    Installing the necessary package and implementing necessary functions
  93. Урок 93. 00:04:30
    Updating setup_test.go to create a Badger database for our tests
  94. Урок 94. 00:12:03
    Writing and running tests for our Badger cache
  95. Урок 95. 00:08:06
    Connecting to Badger
  96. Урок 96. 00:05:40
    Trying out the Badger cache
  97. Урок 97. 00:17:00
    Getting started sending email using SMTP
  98. Урок 98. 00:16:47
    Adding the necessary packages, and completing sending email via SMTP
  99. Урок 99. 00:14:27
    Sending email using Mailgun, SparkPost and more
  100. Урок 100. 00:07:39
    Connecting Celeritas to our mailer package
  101. Урок 101. 00:10:51
    Trying out or mailer package
  102. Урок 102. 00:04:39
    Sending mail using an API
  103. Урок 103. 00:06:16
    Adding "make mail" to the CLI
  104. Урок 104. 00:28:07
    Testing mail
  105. Урок 105. 00:24:26
    Setting up models and middleware for "remember me" functionality
  106. Урок 106. 00:12:54
    Updating the auth handlers for remember me functionality
  107. Урок 107. 00:02:59
    Trying out the remember me functionality
  108. Урок 108. 00:05:15
    Password resets
  109. Урок 109. 00:10:35
    Handling a password reset request
  110. Урок 110. 00:19:04
    Sending a password reset link via email
  111. Урок 111. 00:09:06
    Validating our signed link, and displaying the password reset form
  112. Урок 112. 00:08:29
    Resetting the user's password
  113. Урок 113. 00:09:13
    Updating the "make auth" functionality in the Celeritas CLI
  114. Урок 114. 00:05:29
    Starting work on "celeritas new" in the CLI
  115. Урок 115. 00:03:10
    Sanitizing the project name
  116. Урок 116. 00:05:23
    Cloning a (currently non-existent) repository right in Go
  117. Урок 117. 00:06:16
    Creating a skeleton application
  118. Урок 118. 00:03:37
    Pushing our skeleton application to GitHub
  119. Урок 119. 00:05:09
    Trying out the code that clones a remote GitHub repository
  120. Урок 120. 00:07:23
    Removing the .git directory and creating a .env file
  121. Урок 121. 00:04:20
    Creating the correct Makefile
  122. Урок 122. 00:05:01
    Update go.mod
  123. Урок 123. 00:07:37
    Update imports in .go files
  124. Урок 124. 00:04:49
    Running go mod tidy
  125. Урок 125. 00:02:24
    Pushing our Celeritas project to GitHub
  126. Урок 126. 00:09:14
    Trying out our make new functionality
  127. Урок 127. 00:02:55
    Where to go from here