μ μλ§ κΈ°λ€λ € μ£ΌμΈμ.
code with lari
2023. 9. 9.
ππ Design Data Models with Prisma Schema ππ Establishing relationships and constraints. ππ Integrating OpenAI Chat Functionality ππ Implementing drag-and-drop functionality ππ Tailwind CSS Styling ππ Next.JS Middleware ππ Deploying application to Vercel Please like and subscribe Github https://github.com/laribright/project-manager Want to buy me a coffee? https://www.buymeacoffee.com/laribright
React Next.js admin dashboard project tutorial for beginners. School management app design with Next.js and Tailwind. Admin, teacher, student, and parent dashboards with responsive tables and animated charts. You are watching the first part of the project (The design part) Watch the second part (Full-stack school management app): https://youtu.be/6sfiAyKy8Jo If it is valuable to you, you can support Lama Dev. Join: https://www.youtube.com/channel/UCOxWrX5MIdXIeRNaXC3sqIg/join Buy me a coffee: https://www.buymeacoffee.com/lamadev Source Code: Start here: https://github.com/safak/next-dashboard-ui/tree/starter Completed version: https://github.com/safak/next-dashboard-ui/tree/completed Join Lama Dev groups X / Twitter: https://x.com/lamawebdev Facebook: https://www.facebook.com/groups/lamadev Instagram: https://www.instagram.com/lamawebdev Discord: https://discord.gg/yKremu4mPr 00:00 Introduction 02:38 Installation 05:06 Next.js 15 Pages and Layout Tutorial 11:01 Next.js Tailwind Responsive Layout 18:10 Next.js Tailwind Responsive Menu Design 23:01 Next.js Tailwind Responsive Navbar Design 30:18 Next.js Admin Dashboard Design 39:40 Next.js Animated Chart Tutorial 40:51 Next.js Radial Chart with Re-Charts 52:19 Next.js Animated Bar Chart Example 01:00:11 React Next.js Animated Line Chart Example 01:05:54 React Calendar Tutorial 01:10:36 Events Component Design 01:15:04 Announcement Component Design 01:20:10 Next.js Student Dashboard Design 01:25:56 React Big Calendar (Schedule Calendar) Tutorial 01:43:01 School Management App Parent Dashboard Design 01:43:54 React/Next.js List Table Design with Pagination 01:53:56 React/Next.js Responsive Reusable List Table 02:11:20 School Management App Other List Pages 02:34:08 School Management App Single Teacher Page Design 02:58:15 School Management App Single Student Page Design 03:00:17 Next.js Dynamic Form Buttons (Create, Update, Delete) 03:09:12 React/Next.js Form Modal Design 03:17:11 React Next.js Form Design 03:18:35 React-Hook-Form Tutorial 03:19:35 React-Hook-Form with Zod Validation Tutorial 03:32:25 React/Next.js Form Inputs with Validation 03:47:48 Rendering Forms Conditionally in React 03:50:30 Next.js Lazy Loading Import Tutorial with dynamic() 03:54:22 Outro
2024. 8. 19.
λ€ν°μ μλ₯΄λ©λ¦¬μλ‘ μ μλ €μ§ κ°λ°μ μ΄ν¬μΉμ΄ λΌμ΄λΈλ‘ μ€ν μμ€ νλ‘μ νΈμ 컨νΈλ¦¬λ·°μ ν©λλ€. μ λ¬Έμ μ€ν μμ€ κ°λ°μ μ΄λ»κ² μ΄λ£¨μ΄μ§λμ§ μ΄ν΄λ³΄κ³ , μμ²μλ€κ³Ό ν¨κ» ν λ‘ νκ³ μ§λ¬Έν΄ 보μΈμ! λ©€λ²μ κ°μ μ λ°©μ‘μ κ³μν ν° νμ΄ λ©λλ€: https://www.youtube.com/channel/UCqgBA0QM_LJQLreyv8wlUYA/join μμμ μ¬μ©λ λ°°κ²½ μμ : https://youtube.com/playlist?list=PLuWz7MpEAx_cDvISv__tFcEyDeUN05vWV
2024. 2. 20.
In this tutorial, I will show you how to Configure your own GitLab Runner with a Docker Executor using AWS EC2. π» Click on SHOW MORE π» This is useful if you are trying to use GitLab.com and are running run out of minutes or simply need more power. I will show you how you can run your own GitLab Runner on AWS and cover: - creating a new virtual machine (VM) on AWS using EC2 - installing the GitLab Runner on the VM - configuring the GitLab Runner to work with GitLab.com -- βοΈ Video contents βοΈ β¨οΈ 00:00 - Overview β¨οΈ 01:33 - Create a VM on AWS EC2 β¨οΈ 05:28 - Install dependencies (Git, Docker) β¨οΈ 08:46 - Download & install the GitLab Runner β¨οΈ 09:40 - Register the GitLab Runner with GitLab β¨οΈ 15:42 - Test the GitLab Runner β¨οΈ 18:32 - Test Docker build and push β¨οΈ 21:28 - Enable the privileged mode β¨οΈ 27:07 - Conclusion & next steps βοΈ Commands & resources mentioned βοΈ A Brief Guide to GitLab CI Runners and Executors https://medium.com/devops-with-valentine/a81b9b8bf24e A list of the most important commands used in this tutorial: Update dependencies: sudo yum -y update Install Git: sudo yum install -y git Install Docker: sudo amazon-linux-extras install -y docker Add the ec2-user user to the docker group: sudo usermod -aG docker ec2-user Ensure the Docker daemon starts automatically: sudo systemctl enable docker Restart your EC2 instance: sudo reboot Download the GitLab Runner installation package: curl -LJO "https://gitlab-runner-downloads.s3.amazonaws.com/latest/rpm/gitlab-runner_amd64.rpm" Install the GitLab Runner: sudo rpm -i gitlab-runner_amd64.rpm Register the GitLab Runner: sudo gitlab-runner register Edit the config.toml file: sudo vim /etc/gitlab-runner/config.toml The GitLab CI pipeline config used to test the runner: https://gitlab.com/-/snippets/2300614 βοΈ π GitLab CI/CD ONLINE COURSE βοΈ Want to learn more about CI/CD pipelines? Check my GitLab CI online course. Get it at a special price and help support this YouTube channel: http://www.vdespa.com/courses -- βοΈ π¬ I have a question. βοΈ I do my best to answer all comments here on YouTube but I cannot make any guarantees. If you are asking a question, make sure to include as many details as possible. -- βοΈ π‘ I have a video idea βοΈ Do you want me to create a video on a specific topic? Just fill out the form below: https://forms.gle/uWEzXFQ2viJtZtvZ7 -- βοΈ πΊ Learn GitLab on YouTube βοΈ Collection of video tutorials: βΈ Learn GitLab CI: https://www.youtube.com/playlist?list=PL6iUkDSEH9SumTY7OSLmcMeFmRtQsQvNn ___ βοΈ π Free resources βοΈ π Official Gitlab CI documentation https://docs.gitlab.com/ π DevOps with Valentine https://medium.com/devops-with-valentine -- βοΈ π© Contact & Imprint βοΈ π Follow me on Twitter: https://twitter.com/vdespa π Follow me on Medium: https://vdespa.medium.com/ π Follow me on Facebook: https://www.facebook.com/Valentin-Despa-113038143438826 π Let's connect on LinkedIn: https://www.linkedin.com/in/vdespa/ http://vdespa.com/imprint __
2022. 4. 21.
2024. 8. 19.
Here we have real training about app and api building for beginners. Learn about what's api and how they work and how to build api.
2024. 9. 9.
https://okdevtv.com/mib/aws/ec2 ~~~~~~ * VS Codeλ‘ μ½κ² μμνλ Git, GitHub * μΈνλ°: https://inf.run/LPpDg * React + API Server νλ‘μ νΈ κ°λ°κ³Ό λ°°ν¬ #CICD * https://bit.ly/oklearnreact
2024. 9. 3.