У нас вы можете посмотреть бесплатно GPT&Me | Episode 1 - Vibe Code a Rails Scaffold Onto the Internet the Hard Way, With Less Features! или скачать в максимальном доступном качестве, видео которое было загружено на ютуб. Для загрузки выберите вариант из формы ниже:
Если кнопки скачивания не
загрузились
НАЖМИТЕ ЗДЕСЬ или обновите страницу
Если возникают проблемы со скачиванием видео, пожалуйста напишите в поддержку по адресу внизу
страницы.
Спасибо за использование сервиса ClipSaver.ru
In Episode 1 of GPT&Me, let's take the long way around a short problem... building a Rails scaffold. A scaffold is a way to quickly implement a CRUD application within Rails, and this episode condenses a ~2 hour stream down to about 20 minutes, where we explore some of the parts and pieces of a scaffold, kinda. We explore views, models, controllers and routes once the application has been initialized. Before doing that, we set up the GitHub repository and connected that repo to Heroku, which allowed deployment to the live URL. We troubleshoot our way through the setup, fix routes, patch config files, and eventually get a working Task Manager online, all while stumbling through some mediocre instructions (at best). It doesn't even have generators, APIs, or any ability to destroy tasks… Why would we do this...? Timestamps: 00:00 - Intro 00:05 - Introduction to the Episode 00:32 - Prompt ChatGPT 00:45 - Discussing SMART Goals / Task Manager 01:10 - Application Technology Flow 01:38 - Create GitHub Repository 02:10 - Start WSL 02:23 - Using Git CLI to Clone Repository 02:45 - Rails New (create the actual rails app) 03:30 - App Created 03:45 - Create DB 03:55 - Create Heroku App 04:09 - Connect Heroku App to GitHub Repository 04:38 - Discussing Some Git Basics 05:45 - We Have a Rails App Hosted on GitHub 06:00 - Starting Local Server for Testing 06:30 - Didn't Buy a Domain With AWS (gptnme.com Not Available) 06:45 - Doin' Some Buildin' (Generating First Model) 07:14 - VSCode Discussion (Text Editor) 07:45 - Open Rails App in VSCode 08:00 - TablePlus Discussion (DBMS) 08:18 - Build The Local DB 08:40 - Doin' S'more Buildin' (Generating First Controller (Which Also Generates Views)) 09:27 - Exploring The Created / Modified Files 10:40 - Setting Root Route 11:05 - Changing the 'homepage' (tasks/index) as Set in Routes 11:20 - Consulting the Boss (chatGPT lol) 11:25 - Display Each Individual Task on Task Index 12:20 - Adding Tasks to Database via Seed File 13:10 - Error 13:22 - Vibe Coding 14:50 - Create a Form Partial (File Able to Be Referenced in Multiple Views) 15:50 - Testing Create / Edit, Didn't Work (Was Missing Post / Put Routes) 17:00 - Create Changelog, Update Readme 17:50 - Push 'unreleased' Update to Github 18:15 - Navigate to Heroku, Deploy App 18:43 - Error 18:50 - Exploring Heroku Logs 19:00 - Provision Heroku Postgres DB Instance (Important Step) 19:38 - 2 Minute Break (Condensed Into 4 seconds) 19:50 - Error 20:10 - Vibe Coding 20:40 - Let's Talk About Cable Database 21:01 - Crashout Loading... 21:35 - Error 21:45 - Self Reflection (heroku logs --tail) 22:20 - Re-Evaulating Life Choices 22:40 - Working Application 23:00 - And We Learned 23:08 - Talk About What's Next Next Episode: • GPT&Me | Episode 2 - Now With Even More Sc...