How I Structure New Projects In Golang

  Рет қаралды 49,309

Anthony GG

Anthony GG

Күн бұрын

► Join my Discord community for free education 👉 / discord
► Exclusive Lessons, Mentorship, And Videos 👉 / anthonygg_
► Enjoy a 50% Discount on My Golang Course 👉 fulltimegodev.com
► Learn how I became a self-taught software engineer 👉fulltimegodev.com/#mystory
► Follow me on Twitter 👉 / anthdm
► Follow me on GitHub 👉 github.com/anthdm
SUBSCRIBE OR NO MARGARITAS
╔═╦╗╔╦╗╔═╦═╦╦╦╦╗╔═╗
║╚╣║║║╚╣╚╣╔╣╔╣║╚╣═╣
╠╗║╚╝║║╠╗║╚╣║║║║║═╣
╚═╩══╩═╩═╩═╩╝╚╩═╩═╝

Пікірлер: 112
@anthonygg_
@anthonygg_ 8 ай бұрын
► Join my Discord community for free education 👉 discord.com/invite/Ac7CWREe58 ► Exclusive Lessons, Mentorship, And Videos 👉 www.patreon.com/anthonygg_ ► 50% OFF on my Golang course 👉 fulltimegodev.com Thanks for watching
@apoorvgupta9680
@apoorvgupta9680 8 ай бұрын
what is @ 7:44 ? in make file
@omgItsGreg
@omgItsGreg 8 ай бұрын
God I wish I had your mindset... you just stick to whatever works best for you.. I always look around and doubt my choices, thinking there is a better way of doing it, and then getting stuck on simple things.
@anthonygg_
@anthonygg_ 8 ай бұрын
I always keep things simple, but, always eager to steal other patterns and utilize them when they make sense.
@jhjacobs81
@jhjacobs81 8 ай бұрын
You’re not alone :( and always there’s the next best framework to try, exhausting 😂
@quandaledingle9127
@quandaledingle9127 4 ай бұрын
Your biggest critic is going to be yourself
@envitab
@envitab 7 ай бұрын
Thanks for sharing Anthony! Well explained and detailed.
@iliassglitch
@iliassglitch 5 ай бұрын
Thank you so much for these videos Anthony.
@vcothur7
@vcothur7 8 ай бұрын
I have been searching for a good structure for my go backend that I have for my website, and you decided to post this. Thank you!
8 ай бұрын
Thank you for great video. I really like your approach with simplicity. I'm just learning Go for my hobby projects. And you are helping me so much. (Btw at work we are using C#)
@Insomn3s
@Insomn3s 7 ай бұрын
Your videos are priceless as an example of "practical developer approach"
@Jackbeti
@Jackbeti 8 ай бұрын
Hey Anthony. Why do you think most organizational projects prefer clean architecture over hexagonal architecture? If possible, could you provide an example project implementing hexagonal architecture?
@d_andreev
@d_andreev 8 ай бұрын
Nice initial project structure! Btw, how are you testing business logic inside the pkg folder? Are you using some kind of dependency injection?
7 ай бұрын
Please, record a video about unit tests in golang, the best practices, how to mock things, how to achieve 100% coverage when we have things like database or external calls. Which kind of tests (unit, integration, e2e, etc.) real projects used to write in golang's universe? It's a content that is hard to find in a unique video. Thanks for your great job.
@manfrombritain6816
@manfrombritain6816 4 ай бұрын
this is the real shit. people focusing on coding tutorials... coding is the simple part. proper structure, testing, integration, devops... this is harder to learn imo. especially before doing it on the job
@RogueAfterlife
@RogueAfterlife 4 ай бұрын
Consider the case of testing log writes to standard output vs writes to a file. Unit testing ensures the output from the logger is what I expect whereas integration tests ensure the log line was written. These illustrate fundamentally different testing scenarios. I don't think mocks are useful in unit testing. Tests written in Go are for Go code. Although it might be tempting to use Go's testing framework for integration tests; writing tests concerning external systems is non-trivial because, the scope of the test expands combinatorially to what ever the dependency outputs. If I'm writing tests for my SQL schema, for example, I would write a separate program to test just that and maybe that program would be written in Go!
@vickylance
@vickylance Ай бұрын
@@manfrombritain6816 We use pact testing along with unit testing which is way much better than writing integration tests
@themaridv2000
@themaridv2000 7 күн бұрын
Yeees, please!
@jalbers3150
@jalbers3150 8 ай бұрын
Would love to see how/where you deploy all this. Do you do managed db’s and stuff like that for production?
@Dsouza10082
@Dsouza10082 5 ай бұрын
Amazing as always.
@ta5alof297
@ta5alof297 4 ай бұрын
You don't need a separate schema between migration and SQLC. I'm using goose for migrations and SQLC supports it out of the box.. 1 directory for migrations which contains the schema changes.
@ScienceForToday-lm7nb
@ScienceForToday-lm7nb 3 ай бұрын
Thank you for this video.
@kiryosity_
@kiryosity_ 8 ай бұрын
Could you show an example of a microservices structure with Docker/k8s? Just curios how would you do it :)
@ekallivrousis
@ekallivrousis 4 ай бұрын
Hey Anthony, thank you for this video, the way you describe things is just so real if that makes sense. Im new to the Go world and project structure is always a huge mind blocker for me. Do you happen to have a public repo of the above structure? I wanted to go through it more, i really like how clean it is the only thing i dont think i follow is the global db instance. Now i know you said this in video and its just all in how it works for you and your team. I personally only use go for personal projects and i rely on the test files to make sure i dont break as much as i can. That includes the database. I setup tests to confirm that basically im getting data back from the database. Is this still possible with a global database?
@anthonygg_
@anthonygg_ 4 ай бұрын
Better not to is a better practice
@WaldirBorbaJunior
@WaldirBorbaJunior 8 ай бұрын
Wow... blazing amaze, could you please share your start project ?
@garbagechannel6514
@garbagechannel6514 8 ай бұрын
I noticed everything is very flat. Im used to having subfolders in my project coming from C#. It's a bit harder to do in Go because namespaces are not a thing. So should it be flat and end up with a ton of files in a module, as well as many modules or would you say its ok to have nested folders?
@anthonygg_
@anthonygg_ 8 ай бұрын
The problem in Go with a lot of nested folders is circular dependencies.
@garbagechannel6514
@garbagechannel6514 8 ай бұрын
@@anthonygg_ yes, i already ran into that :P i suppose i just have to get used to a flatter structure with Go
@anthonygg_
@anthonygg_ 8 ай бұрын
@@garbagechannel6514I also learned that the hard way 😂😢
@dejanduh2645
@dejanduh2645 7 ай бұрын
Is there a link to this project or this project structure? Looks very clean
@kazimir9576
@kazimir9576 7 ай бұрын
yeah in 04:00 u are right, ppl very often tend to overcode, over complicate everything just because they think its how it must be done, "book way". and spend 1 week on doing smth that for business does not matter. They need to understand its a business, and if you spend a lot of time just because you want smth make 5ms faster, try to tell the business how much money it cost for them to gain 5ms faster api call for some profile update etc. ;)
@user-tw7ok7qf8v
@user-tw7ok7qf8v 8 ай бұрын
Great video! Antony tell me the name of the vscode theme please
@ralphlorenzo9473
@ralphlorenzo9473 7 ай бұрын
What do you think of the new routing as of version 1.22?
@sheraztariq8973
@sheraztariq8973 19 күн бұрын
use ent for database and kudos for good explanation, i was having hard time for structuring my project
@manpt123
@manpt123 8 ай бұрын
I still often ask myself if I am writing golang in standard way😂 thank you for the video 🎉
@Programming-lr1nb
@Programming-lr1nb 8 ай бұрын
"Is it a way to go? Pfft. I have no fucking clue" is my new life credo
@lancemarchetti8673
@lancemarchetti8673 4 ай бұрын
I have an idea for a new method of digital Steganography whereby a lager image can be hidden in a smaller one without changing the filesize or quality of the host image. Will Golang work better to build this app in Windows, or should I battle it out with JS and html? . I'm totally new to programming so it feels like I've just thrown myself into the deep end.... lol
@Mari_Selalu_Berbuat_Kebaikan
@Mari_Selalu_Berbuat_Kebaikan 3 ай бұрын
Let's always do alot of good ❤️
@Simple_OG
@Simple_OG 25 күн бұрын
Anthonyy what theme are you using it lokks so cool
@anthonygg_
@anthonygg_ 25 күн бұрын
Gruvbox
@karolkotula9279
@karolkotula9279 8 ай бұрын
Hi Anthony. Really great stuff here! It's of excellent quality. Can you please start swearing in your native language? :D I guess it would be even more fun to watch your vids :) THANK YOU !!!
@anthonygg_
@anthonygg_ 8 ай бұрын
Ok I will try that
@user-bz2oo7zv4q
@user-bz2oo7zv4q 8 ай бұрын
Only using your native, you can be truly "authentic" :) Like delicate seasoning in your food (for thought) :D
@comedyclub333
@comedyclub333 6 ай бұрын
Also, on the performance argument: As you said, performance doesn't matter (most of the time). If performance is your bottleneck (as in really being an issue) you probably did something horribly wrong when deploying your app. No framework swap is going to change that. I mean, many people (and also big companies) use python, one of the slowest languages known. Because you save a lot of money when developing the app and if performance is an issue you just throw the money you saved onto your deployment infrastructure to make it work.
@francesctravesa
@francesctravesa 4 ай бұрын
So all the types are public? not a little bit of encapsulation with some information hiding? like smart creators to make sure the structs are always in a valid state? Some rich domain then at least? and when you want use some inverse dependency injection and clean architecture? I think there must be a smart way to implement all of these best practices with go?
@anthonygg_
@anthonygg_ 4 ай бұрын
Stop thinking. Start pressing buttons. You are behind.
@krq999
@krq999 7 ай бұрын
Can you post something related to sql databases? Generators, creating records, relations etc
@frankfix247
@frankfix247 Ай бұрын
Drop the plenum naming in packages and the infamous util package. This is according to the Golang docs.
@anthonygg_
@anthonygg_ Ай бұрын
Ok franky
@frankfix247
@frankfix247 Ай бұрын
@@anthonygg_ It wasn't meant to be sarcastic. Keep up the good work!
@charlesbcraig
@charlesbcraig 8 ай бұрын
AGG: if you have a performance issue, congratulations you’ve made it Me: 😁 AGG: But most of you won’t Me: 😭
@XxMissingDataxX
@XxMissingDataxX 8 ай бұрын
Very nice
@ZenonCreations
@ZenonCreations 2 сағат бұрын
dont you use DTOs in go lang backend development?
@zzej
@zzej 7 ай бұрын
wait.... how can golang render svelte? that would be awesome. or is it svelte as an SPA?
@nivethan_me
@nivethan_me 6 ай бұрын
front-end with Svelte and backend with Golang i guess.
@AbdulRehman-pb5od
@AbdulRehman-pb5od 8 ай бұрын
I use fiber only bcz they have best documentation I have ever came through.
@salihbozkaya9357
@salihbozkaya9357 8 ай бұрын
Dad, where did you been all those times.missed you
@viveksingh9223
@viveksingh9223 3 ай бұрын
Can you tell me what theme you are using?
@anthonygg_
@anthonygg_ 3 ай бұрын
Gruvbox
@mrlectus
@mrlectus 7 ай бұрын
My OCD says I need everything to be organized and properly structured
@eyob7232
@eyob7232 8 ай бұрын
I highly disagree with global variables, I believe creating a singleton and passing it as a parameter is a better choice. I agree with you having a dedicated folder for queries, and data related stuff, but I would call that folder repository or sth like that, data is a bit too general, just my 2 cents.
@anthonygg_
@anthonygg_ 8 ай бұрын
Data is indeed general. But repository sounds so cringe. The global db, yeah, sometimes we need to close our eyes.
@ibraim3197
@ibraim3197 8 ай бұрын
You are wrong about performance. It doesn't always come with a large user base, it's also can be a consequence of inefficient DB-layer (N+1 query etc) or algorithms
@joef7884
@joef7884 5 ай бұрын
You're right, but in the specific context of "which framework should I use" which is what he was talking about, generally each framework isn't going to make one of those mistakes; it will still be up to you the developer to use them wisely with good algorithms and queries.
@fernandoacorreia
@fernandoacorreia 6 күн бұрын
He was talking about the relative performance of different web frameworks. He is correct.
@tirumalraot
@tirumalraot 8 ай бұрын
4:36 "Which in your case, in most of the cases it never be!" That actually hurts
@JohnSchuhr
@JohnSchuhr 8 ай бұрын
Yeah, I felt it too - 😂
@virility
@virility 7 ай бұрын
hey anthony, what laptop do you use?
@anthonygg_
@anthonygg_ 7 ай бұрын
I use a desktop. Custom build
@virility
@virility 7 ай бұрын
@@anthonygg_ what about when you r traveling? Do u carry ur desktop around you when you travel?
@anthonygg_
@anthonygg_ 7 ай бұрын
I have a macbook (old one)
@kurtlee138
@kurtlee138 3 ай бұрын
didnt know the rock makes programming videos
@anthonygg_
@anthonygg_ 3 ай бұрын
Years of wrestling and testosteron abuse made me look for something more subtle.
@woodmanmade
@woodmanmade 7 ай бұрын
"Models belong on the catwalk" 🤣
@dejanduh2645
@dejanduh2645 7 ай бұрын
Is there a link to the source code?
@shravan2891
@shravan2891 3 ай бұрын
why didn't you use this structure in you fulltimegodev course
@anthonygg_
@anthonygg_ 3 ай бұрын
Because we are free.
@arielsashcov99
@arielsashcov99 8 ай бұрын
Exactly what I was searching for
@D3FKONMusik123
@D3FKONMusik123 8 ай бұрын
Hey Anthony. Your videos have a lot of value, but they are usually structured so poorly and runs for so long that it's hard to follow for more than a couple of mins. But really appreciate all the value
@anthonygg_
@anthonygg_ 8 ай бұрын
Correct this channel is not for the weak. Sorry my man.
@D3FKONMusik123
@D3FKONMusik123 8 ай бұрын
@@anthonygg_ That makes a lot of sense. Congrats!
@rw_panic0_0
@rw_panic0_0 8 ай бұрын
what means "handlers" if your program works with not only http, but with websockets and kafka? Are these kafka handlers, http or websocket handlers? What if your types are not just structs but full domain models with methods interfaces etc? What if I have a lot of types, finding a type will become a problem. For a man who just got into the codebase there are no clear difference between "data" and "types". Util folder have to probably be split up into encryptuitl etc. I don't think this is a scalable project structure. However I agree that going with DDD or hex arch is a bad idea, your structure works PERFECTLY good for small projects. But I personally find splitting program into packages (multiple "feature-sliced" packages which have their own types, data, and util) and being explicit about your naming (types, util, handlers are pretty vague) is most important thing, because being vague and putting similar functionality in different places is the thing that makes project structure unscalable.
@anthonygg_
@anthonygg_ 8 ай бұрын
Like I mentioned in the video, this is how it is right now, but probably subject to change in the future. Happy to share that later
@Benony91
@Benony91 4 ай бұрын
17:46 `AumMax50Million = “10-15mil”` is this a bug?
@user-uw7st6vn1z
@user-uw7st6vn1z 8 ай бұрын
leave a mark here, so remind me watch it later on
@anthonygg_
@anthonygg_ 8 ай бұрын
Reminding you to watch
@iamsupriyo
@iamsupriyo 8 ай бұрын
Bro came back
@pattyspanker8955
@pattyspanker8955 8 ай бұрын
Remind me to remind user he has a reminder to watch this video
@fluctura
@fluctura 7 ай бұрын
Data is where your data belongs to. For example seed data. Model is where you save what model/shape your data has. So yeah.. that I think was the original idea behing that common sense project layout Nowadays your data is stored on S3 or whatever.. but if we are splitting hairs, why not putting your db and migrations into data folder as well? 😅 its data too 😮😂
@sjzz
@sjzz Ай бұрын
I just follow my JS folder pattern controllers, service, routes, middleware etc
@MrMu2sS
@MrMu2sS 3 ай бұрын
French devs will cry in ddd
@Buiscit1738
@Buiscit1738 8 ай бұрын
dopamine!
@yarbersheer8559
@yarbersheer8559 2 ай бұрын
Man, just use goose for migrations)
@anthonygg_
@anthonygg_ 2 ай бұрын
Facts
@greed7513
@greed7513 7 ай бұрын
"a drop pkg in cmd that drops all the tables with a sql command" HUHHHHHH???? How is any of those folders in the cmd folder good organization
@kotsmile
@kotsmile 8 ай бұрын
Can you share this project, please?
@anthonygg_
@anthonygg_ 8 ай бұрын
I cant or I go to jail
@kotsmile
@kotsmile 8 ай бұрын
just a template without NDA stuff (and you have already showed the content oops)@@anthonygg_
@dencasio6141
@dencasio6141 7 ай бұрын
util?
@ibrahimkoz1983
@ibrahimkoz1983 Ай бұрын
This structuring is away from the best practices and the philosophy of packages. You should not organize your based on technical details. Packages should be organised based on layers, not for grouping.
@anthonygg_
@anthonygg_ Ай бұрын
True. But how many revenue does your company make?
@ibrahimkoz1983
@ibrahimkoz1983 Ай бұрын
@@anthonygg_ disappointed. I was following you for a long time, learnt a lot from you. You replied with a fallacy :/
@anthonygg_
@anthonygg_ Ай бұрын
I just said you are right.
@luciancristianpop2735
@luciancristianpop2735 5 ай бұрын
In the first minute you're asking for the thumbs up and subscription, no matter the content, this is rude.
@anthonygg_
@anthonygg_ 5 ай бұрын
But was it worth it?
@whtkeys8190
@whtkeys8190 8 ай бұрын
Really bad bro
@DoktorKumpel
@DoktorKumpel 3 ай бұрын
I thought with go build you have to specify each package. how come you only specify cmd/api/main.go?
@MCDyma
@MCDyma 7 ай бұрын
And again you are in GoWeekly #​480 - OCTOBER 17, 2023 Congratulations
@anthonygg_
@anthonygg_ 7 ай бұрын
Ha thanks 🙏
Golang And Svelte  - Swapping To Server Side Rendering
1:27:49
Anthony GG
Рет қаралды 5 М.
Mastering Dependency Injection In Golang
14:29
Anthony GG
Рет қаралды 42 М.
Black Magic 🪄 by Petkit Pura Max #cat #cats
00:38
Sonyakisa8 TT
Рет қаралды 27 МЛН
Как быстро замутить ЭлектроСамокат
00:59
ЖЕЛЕЗНЫЙ КОРОЛЬ
Рет қаралды 10 МЛН
How To Setup A Golang + Templ Project Structure
31:20
Anthony GG
Рет қаралды 44 М.
How To Check Passwords On Phone (2024)
1:35
Si Guide
Рет қаралды 16
Beginners Should Think Differently When Writing Golang
11:35
Anthony GG
Рет қаралды 91 М.
From React To HTMX
40:01
ThePrimeTime
Рет қаралды 294 М.
The standard library now has all you need for advanced routing in Go.
13:52
Why JavaScript Devs are Switching to Rust in 2024
10:35
warpdotdev
Рет қаралды 243 М.
Golang Tutorial 3 - Golang pointers explained, once and for all
13:49
Mastering Inheritance By Struct Embedding In Golang
13:05
Anthony GG
Рет қаралды 27 М.
Why You NEED To Learn FastAPI | Hands On Project
21:15
Travis Media
Рет қаралды 145 М.
The BEST Tool to Structure Golang Projects
7:58
Melkey
Рет қаралды 11 М.