[{"data":1,"prerenderedAt":1079},["ShallowReactive",2],{"/blog/how-to-read-open-source-finding-middleman-callbacks":3,"navigation-en-us":296,"banner-en-us":723,"footer-en-us":733,"blog-post-authors-en-us-Tyler Williams":978,"blog-related-posts-en-us-how-to-read-open-source-finding-middleman-callbacks":992,"blog-promotions-en-us":1015,"next-steps-en-us":1069},{"id":4,"title":5,"authors":6,"body":8,"category":275,"date":276,"description":277,"extension":278,"externalUrl":279,"faq":279,"featured":280,"heroImage":281,"meta":282,"navigation":283,"path":284,"seo":285,"slug":288,"stem":289,"tags":290,"template":294,"updatedDate":279,"__hash__":295},"blogPosts/en-us/blog/how-to-read-open-source-finding-middleman-callbacks.md","How to Read Open Source: Finding Middleman Callbacks",[7],"Tyler Williams",{"type":9,"value":10,"toc":266},"minimark",[11,16,20,23,44,47,51,54,63,72,78,87,91,203,207,256,260,263],[12,13,15],"h2",{"id":14},"why-read-open-source","Why read open source?",[17,18,19],"p",{},"When folks write about open source, I think there is a strong emphasis on contributing to open source projects, which makes sense. Many software professionals are excited to give back to the community.",[17,21,22],{},"But beyond adding to your favorite project, open source philosophies have a number of other benefits in our daily lives. In particular, I love open source because it allows me to learn more about my tools when the documentation is out of date, incomplete, or leaves me with additional questions from my own curiosity.",[17,24,25,26,31,32,37,38,43],{},"This happened to me recently when I was working on ",[27,28,29],"a",{"href":29,"rel":30},"https://about.gitlab.com",[],", a static site built with ",[27,33,36],{"href":34,"rel":35},"https://middlemanapp.com/",[],"Middleman",". I needed to find a more comprehensive list of available ",[27,39,42],{"href":40,"rel":41},"https://middlemanapp.com/advanced/custom-extensions/#callbacks",[],"callbacks"," in the Middleman lifecycle.",[17,45,46],{},"I hope this blog post is helpful if you're looking for existing Middleman callbacks, or if you're getting started reading through the source code of your favorite open source tools.",[12,48,50],{"id":49},"the-task-at-hand","The task at hand",[17,52,53],{},"If you're getting started reading open source, I find it helps to have a specific task. Any unfamiliar codebase can be challenging to navigate. Having a goal in mind narrows your focus. Here was my task for Middleman:",[17,55,56,57,62],{},"I recently created a merge request to ",[27,58,61],{"href":59,"rel":60},"https://gitlab.com/gitlab-com/www-gitlab-com/-/merge_requests/71845",[],"add Webpack devServer to the local development environment",". I had to modify some existing behavior of our Middleman preview server and wanted to use one of the lifecycle callbacks to modify the preview server's log output.",[17,64,65,66,71],{},"However, the Middleman documentation does not currently list all available callbacks, nor where they happen in the lifecycle. The ",[27,67,70],{"href":68,"rel":69},"https://middlemanapp.com/advanced/custom-extensions/",[],"extension docs"," say:",[73,74,75],"blockquote",{},[17,76,77],{},"Middleman extensions are Ruby classes which can hook into various points of the Middleman system, add new features and manipulate content. This guide explains some of what's available, but you should read the Middleman source and the source of plugins like middleman-blog to discover all the hooks and extension points.",[17,79,80,81,86],{},"I took them up on their advice and read through the ",[27,82,85],{"href":83,"rel":84},"https://github.com/middleman/middleman",[],"Middleman source code"," to find the available callbacks. Here's what I found, and how I found them.",[12,88,90],{"id":89},"callbacks-available-in-middleman-core","Callbacks available in Middleman Core",[92,93,94,102,111,121,127,136,142,148,154,160,166,172,182,188,197],"ol",{},[95,96,97,101],"li",{},[98,99,100],"code",{},"initialized",": called before config is parsed, and before extensions are registered",[95,103,104,107,108,110],{},[98,105,106],{},"configure",": called to run any ",[98,109,106],{}," blocks (once for current environment, again for the current mode)",[95,112,113,116,117,120],{},[98,114,115],{},"before_extensions",": called before the ",[98,118,119],{},"ExtensionManager"," is instantiated",[95,122,123,126],{},[98,124,125],{},"before_instance_block",": called before any blocks are passed to the configuration context",[95,128,129,116,132,135],{},[98,130,131],{},"before_sitemap",[98,133,134],{},"SiteMap::Store"," is instantiated, which initializes the sitemap",[95,137,138,141],{},[98,139,140],{},"before_configuration",": called before configuration is parsed, mostly used for extensions",[95,143,144,147],{},[98,145,146],{},"after_configuration",": called after extensions have worked",[95,149,150,153],{},[98,151,152],{},"after_configuration_eval",": called after the configuration is parsed, before the pre-extension callback",[95,155,156,159],{},[98,157,158],{},"ready",": called when everything is stable",[95,161,162,165],{},[98,163,164],{},"before_build",": called before the site build process runs",[95,167,168,171],{},[98,169,170],{},"after_build",": called after the builder is complete",[95,173,174,177,178,181],{},[98,175,176],{},"before_shutdown",": called in the ",[98,179,180],{},"shutdown!"," method, which lets users know the application is shutting down",[95,183,184,187],{},[98,185,186],{},"before",": called before Rack requests",[95,189,190,116,193,196],{},[98,191,192],{},"before_server",[98,194,195],{},"PreviewServer"," is created",[95,198,199,202],{},[98,200,201],{},"reload",": called before the new application is initialized on a reload event",[12,204,206],{"id":205},"how-to-find-middleman-callbacks","How to find Middleman Callbacks",[92,208,209,217,220,231,237,243,246],{},[95,210,211,212,216],{},"Clone the ",[27,213,215],{"href":83,"rel":214},[],"Middleman repository"," to your local machine.",[95,218,219],{},"Open the Middleman directory in a text editor, IDE, or any tool that allows you to easily search through a folder's files for specific strings.",[95,221,222,223,227,228,230],{},"Start with the ",[27,224,226],{"href":40,"rel":225},[],"existing documentation"," if it exists. Middleman lists the names of a few callbacks. You can search the directory for the string ",[98,229,146],{},".",[95,232,233,234,230],{},"In this instance, you should be able to find that string used like so: ",[98,235,236],{},"execute_callbacks(:after_configuration)",[95,238,239,240,230],{},"You may also find it listed with other similar symbols in ",[98,241,242],{},"middleman-core/lib/middleman-core/application.rb",[95,244,245],{},"Read through the related blocks of code around these search results, you'll get some additional context for how they work, and you may find additional search terms that will be helpful.",[95,247,248,249,252,253,255],{},"In the case of Middleman callbacks, you can continue to search for combinations of the ",[98,250,251],{},"execute_callbacks"," method with any callback listed in ",[98,254,242],{}," to find where and when specific callbacks are used.",[12,257,259],{"id":258},"contribute","Contribute!",[17,261,262],{},"With this in-depth knowledge of your tool, you can be more productive at your day-to-day work, and you can contribute back to open source more easily.",[17,264,265],{},"In my case, I was able to identify the best callback for my usecase, and I now plan to check in with the Middleman team and ask if they would accept a contribution to their documentation with this information so it's easier for other folks to find in the future.",{"title":267,"searchDepth":268,"depth":268,"links":269},"",2,[270,271,272,273,274],{"id":14,"depth":268,"text":15},{"id":49,"depth":268,"text":50},{"id":89,"depth":268,"text":90},{"id":205,"depth":268,"text":206},{"id":258,"depth":268,"text":259},"unfiltered","2021-01-20","Open source empowers you to learn beyond existing documentation. Getting started can be confusing. This is a demonstration finding unlisted Middleman callbacks.","md",null,false,"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749664102/Blog/Hero%20Images/gitlab-values-cover.png",{},true,"/en-us/blog/how-to-read-open-source-finding-middleman-callbacks",{"title":5,"description":277,"ogTitle":5,"ogDescription":277,"noIndex":280,"ogImage":281,"ogUrl":286,"ogSiteName":29,"ogType":287,"canonicalUrls":286},"https://about.gitlab.com/blog/how-to-read-open-source-finding-middleman-callbacks","article","how-to-read-open-source-finding-middleman-callbacks","en-us/blog/how-to-read-open-source-finding-middleman-callbacks",[291,292,293],"open source","tutorial","workflow","BlogPost","f9NeanEacz9LppcQTdkGY_PCmGJNlLmbJDBgyJgkdK0",{"logo":297,"freeTrial":302,"sales":307,"login":312,"items":317,"search":643,"minimal":674,"duo":693,"switchNav":702,"pricingDeployment":713},{"config":298},{"href":299,"dataGaName":300,"dataGaLocation":301},"/","gitlab logo","header",{"text":303,"config":304},"Get free trial",{"href":305,"dataGaName":306,"dataGaLocation":301},"https://gitlab.com/-/trial_registrations/new?glm_source=about.gitlab.com&glm_content=default-saas-trial/","free trial",{"text":308,"config":309},"Request a demo",{"href":310,"dataGaName":311,"dataGaLocation":301},"/sales/?contact-topic=request-demo","sales",{"text":313,"config":314},"Sign in",{"href":315,"dataGaName":316,"dataGaLocation":301},"https://gitlab.com/users/sign_in/","sign in",[318,347,447,452,565,621],{"text":319,"config":320,"menu":322},"Platform",{"dataNavLevelOne":321},"platform",{"type":323,"columns":324},"cards",[325,331,339],{"title":319,"description":326,"link":327},"The intelligent orchestration platform for DevSecOps",{"text":328,"config":329},"Explore our Platform",{"href":330,"dataGaName":321,"dataGaLocation":301},"/platform/",{"title":332,"description":333,"link":334},"GitLab Duo Agent Platform","Agentic AI for the entire software lifecycle",{"text":335,"config":336},"Meet GitLab Duo",{"href":337,"dataGaName":338,"dataGaLocation":301},"/gitlab-duo-agent-platform/","gitlab duo agent platform",{"title":340,"description":341,"link":342},"Why GitLab","See the top reasons enterprises choose GitLab",{"text":343,"config":344},"Learn more",{"href":345,"dataGaName":346,"dataGaLocation":301},"/why-gitlab/","why gitlab",{"text":348,"left":283,"config":349,"menu":351},"Product",{"dataNavLevelOne":350},"solutions",{"type":352,"link":353,"columns":357,"feature":426},"lists",{"text":354,"config":355},"View all Solutions",{"href":356,"dataGaName":350,"dataGaLocation":301},"/solutions/",[358,382,405],{"title":359,"description":360,"link":361,"items":366},"Automation","CI/CD and automation to accelerate deployment",{"config":362},{"icon":363,"href":364,"dataGaName":365,"dataGaLocation":301},"AutomatedCodeAlt","/solutions/delivery-automation/","automated software delivery",[367,371,374,378],{"text":368,"config":369},"CI/CD",{"href":370,"dataGaLocation":301,"dataGaName":368},"/solutions/continuous-integration/",{"text":332,"config":372},{"href":337,"dataGaLocation":301,"dataGaName":373},"gitlab duo agent platform - product menu",{"text":375,"config":376},"Source Code Management",{"href":377,"dataGaLocation":301,"dataGaName":375},"/solutions/source-code-management/",{"text":379,"config":380},"Automated Software Delivery",{"href":364,"dataGaLocation":301,"dataGaName":381},"Automated software delivery",{"title":383,"description":384,"link":385,"items":390},"Security","Deliver code faster without compromising security",{"config":386},{"href":387,"dataGaName":388,"dataGaLocation":301,"icon":389},"/solutions/application-security-testing/","security and compliance","ShieldCheckLight",[391,395,400],{"text":392,"config":393},"Application Security Testing",{"href":387,"dataGaName":394,"dataGaLocation":301},"Application security testing",{"text":396,"config":397},"Software Supply Chain Security",{"href":398,"dataGaLocation":301,"dataGaName":399},"/solutions/supply-chain/","Software supply chain security",{"text":401,"config":402},"Software Compliance",{"href":403,"dataGaName":404,"dataGaLocation":301},"/solutions/software-compliance/","software compliance",{"title":406,"link":407,"items":412},"Measurement",{"config":408},{"icon":409,"href":410,"dataGaName":411,"dataGaLocation":301},"DigitalTransformation","/solutions/visibility-measurement/","visibility and measurement",[413,417,421],{"text":414,"config":415},"Visibility & Measurement",{"href":410,"dataGaLocation":301,"dataGaName":416},"Visibility and Measurement",{"text":418,"config":419},"Value Stream Management",{"href":420,"dataGaLocation":301,"dataGaName":418},"/solutions/value-stream-management/",{"text":422,"config":423},"Analytics & Insights",{"href":424,"dataGaLocation":301,"dataGaName":425},"/solutions/analytics-and-insights/","Analytics and insights",{"title":427,"type":352,"items":428},"GitLab for",[429,435,441],{"text":430,"config":431},"Enterprise",{"icon":432,"href":433,"dataGaLocation":301,"dataGaName":434},"Building","/enterprise/","enterprise",{"text":436,"config":437},"Small Business",{"icon":438,"href":439,"dataGaLocation":301,"dataGaName":440},"Work","/small-business/","small business",{"text":442,"config":443},"Public Sector",{"icon":444,"href":445,"dataGaLocation":301,"dataGaName":446},"Organization","/solutions/public-sector/","public sector",{"text":448,"config":449},"Pricing",{"href":450,"dataGaName":451,"dataGaLocation":301,"dataNavLevelOne":451},"/pricing/","pricing",{"text":453,"config":454,"menu":456},"Resources",{"dataNavLevelOne":455},"resources",{"type":352,"link":457,"columns":461,"feature":554},{"text":458,"config":459},"View all resources",{"href":460,"dataGaName":455,"dataGaLocation":301},"/resources/",[462,495,522],{"title":463,"items":464},"Getting started",[465,470,475,480,485,490],{"text":466,"config":467},"Install",{"href":468,"dataGaName":469,"dataGaLocation":301},"/install/","install",{"text":471,"config":472},"Quick start guides",{"href":473,"dataGaName":474,"dataGaLocation":301},"/get-started/","quick setup checklists",{"text":476,"config":477},"Learn",{"href":478,"dataGaLocation":301,"dataGaName":479},"https://university.gitlab.com/","learn",{"text":481,"config":482},"Product documentation",{"href":483,"dataGaName":484,"dataGaLocation":301},"https://docs.gitlab.com/","product documentation",{"text":486,"config":487},"Best practice videos",{"href":488,"dataGaName":489,"dataGaLocation":301},"/getting-started-videos/","best practice videos",{"text":491,"config":492},"Integrations",{"href":493,"dataGaName":494,"dataGaLocation":301},"/integrations/","integrations",{"title":496,"items":497},"Discover",[498,503,508,513,517],{"text":499,"config":500},"Customer success stories",{"href":501,"dataGaName":502,"dataGaLocation":301},"/customers/","customer success stories",{"text":504,"config":505},"Blog",{"href":506,"dataGaName":507,"dataGaLocation":301},"/blog/","blog",{"text":509,"config":510},"Demo Hub",{"href":511,"dataGaName":512,"dataGaLocation":301},"/demo-hub/","demo hub",{"text":514,"config":515},"The Source",{"href":516,"dataGaName":507,"dataGaLocation":301},"/the-source/",{"text":518,"config":519},"Remote",{"href":520,"dataGaName":521,"dataGaLocation":301},"https://handbook.gitlab.com/handbook/company/culture/all-remote/","remote",{"title":523,"items":524},"Connect",[525,530,534,539,544,549],{"text":526,"config":527},"GitLab Services",{"href":528,"dataGaName":529,"dataGaLocation":301},"/services/","services",{"text":531,"config":532},"Contribute",{"href":533,"dataGaName":258,"dataGaLocation":301},"https://contributors.gitlab.com",{"text":535,"config":536},"Community",{"href":537,"dataGaName":538,"dataGaLocation":301},"/community/","community",{"text":540,"config":541},"Forum",{"href":542,"dataGaName":543,"dataGaLocation":301},"https://forum.gitlab.com/","forum",{"text":545,"config":546},"Events",{"href":547,"dataGaName":548,"dataGaLocation":301},"/events/","events",{"text":550,"config":551},"Partners",{"href":552,"dataGaName":553,"dataGaLocation":301},"/partners/","partners",{"config":555,"title":558,"text":559,"link":560},{"background":556,"textColor":557},"url('https://res.cloudinary.com/about-gitlab-com/image/upload/v1777322348/qpq8yrgn8knii57omj0c.png')","#000","What’s new in GitLab","Stay updated with our latest features and improvements.",{"text":561,"config":562},"Read the latest",{"href":563,"dataGaName":564,"dataGaLocation":301},"/whats-new/","whats new",{"text":566,"config":567,"menu":569},"Company",{"dataNavLevelOne":568},"company",{"type":352,"columns":570},[571],{"items":572},[573,578,584,586,591,596,601,606,611,616],{"text":574,"config":575},"About",{"href":576,"dataGaName":577,"dataGaLocation":301},"/company/","about",{"text":579,"config":580,"footerGa":583},"Jobs",{"href":581,"dataGaName":582,"dataGaLocation":301},"/jobs/","jobs",{"dataGaName":582},{"text":545,"config":585},{"href":547,"dataGaName":548,"dataGaLocation":301},{"text":587,"config":588},"Leadership",{"href":589,"dataGaName":590,"dataGaLocation":301},"/company/team/e-group/","leadership",{"text":592,"config":593},"Handbook",{"href":594,"dataGaName":595,"dataGaLocation":301},"https://handbook.gitlab.com/","handbook",{"text":597,"config":598},"Investor relations",{"href":599,"dataGaName":600,"dataGaLocation":301},"https://ir.gitlab.com/overview/default.aspx","investor relations",{"text":602,"config":603},"Trust Center",{"href":604,"dataGaName":605,"dataGaLocation":301},"/security/","trust center",{"text":607,"config":608},"AI Transparency Center",{"href":609,"dataGaName":610,"dataGaLocation":301},"/ai-transparency-center/","ai transparency center",{"text":612,"config":613},"Newsletter",{"href":614,"dataGaName":615,"dataGaLocation":301},"/company/contact/#contact-forms","newsletter",{"text":617,"config":618},"Press",{"href":619,"dataGaName":620,"dataGaLocation":301},"/press/","press",{"text":622,"config":623,"menu":624},"Contact us",{"dataNavLevelOne":568},{"type":352,"columns":625},[626],{"items":627},[628,633,638],{"text":629,"config":630},"Talk to sales",{"href":631,"dataGaName":632,"dataGaLocation":301},"/sales/","talk to sales",{"text":634,"config":635},"Support portal",{"href":636,"dataGaName":637,"dataGaLocation":301},"https://support.gitlab.com/hc/en-us","support portal",{"text":639,"config":640},"Customer portal",{"href":641,"dataGaName":642,"dataGaLocation":301},"https://customers.gitlab.com/customers/sign_in/","customer portal",{"close":644,"login":645,"suggestions":652},"Close",{"text":646,"link":647},"To search repositories and projects, login to",{"text":648,"config":649},"gitlab.com",{"href":315,"dataGaName":650,"dataGaLocation":651},"search login","search",{"text":653,"default":654},"Suggestions",[655,657,661,663,667,671],{"text":332,"config":656},{"href":337,"dataGaName":332,"dataGaLocation":651},{"text":658,"config":659},"Code Suggestions (AI)",{"href":660,"dataGaName":658,"dataGaLocation":651},"/solutions/code-suggestions/",{"text":368,"config":662},{"href":370,"dataGaName":368,"dataGaLocation":651},{"text":664,"config":665},"GitLab on AWS",{"href":666,"dataGaName":664,"dataGaLocation":651},"/partners/technology-partners/aws/",{"text":668,"config":669},"GitLab on Google Cloud",{"href":670,"dataGaName":668,"dataGaLocation":651},"/partners/technology-partners/google-cloud-platform/",{"text":672,"config":673},"Why GitLab?",{"href":345,"dataGaName":672,"dataGaLocation":651},{"freeTrial":675,"mobileIcon":680,"desktopIcon":685,"secondaryButton":688},{"text":676,"config":677},"Start free trial",{"href":678,"dataGaName":306,"dataGaLocation":679},"https://gitlab.com/-/trials/new/","nav",{"altText":681,"config":682},"Gitlab Icon",{"src":683,"dataGaName":684,"dataGaLocation":679},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1758203874/jypbw1jx72aexsoohd7x.svg","gitlab icon",{"altText":681,"config":686},{"src":687,"dataGaName":684,"dataGaLocation":679},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1758203875/gs4c8p8opsgvflgkswz9.svg",{"text":689,"config":690},"Get Started",{"href":691,"dataGaName":692,"dataGaLocation":679},"https://gitlab.com/-/trial_registrations/new?glm_source=about.gitlab.com/get-started/","get started",{"freeTrial":694,"mobileIcon":698,"desktopIcon":700},{"text":695,"config":696},"Learn more about GitLab Duo",{"href":337,"dataGaName":697,"dataGaLocation":679},"gitlab duo",{"altText":681,"config":699},{"src":683,"dataGaName":684,"dataGaLocation":679},{"altText":681,"config":701},{"src":687,"dataGaName":684,"dataGaLocation":679},{"button":703,"mobileIcon":708,"desktopIcon":710},{"text":704,"config":705},"/switch",{"href":706,"dataGaName":707,"dataGaLocation":679},"#contact","switch",{"altText":681,"config":709},{"src":683,"dataGaName":684,"dataGaLocation":679},{"altText":681,"config":711},{"src":712,"dataGaName":684,"dataGaLocation":679},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1773335277/ohhpiuoxoldryzrnhfrh.png",{"freeTrial":714,"mobileIcon":719,"desktopIcon":721},{"text":715,"config":716},"Back to pricing",{"href":450,"dataGaName":717,"dataGaLocation":679,"icon":718},"back to pricing","GoBack",{"altText":681,"config":720},{"src":683,"dataGaName":684,"dataGaLocation":679},{"altText":681,"config":722},{"src":687,"dataGaName":684,"dataGaLocation":679},{"title":724,"titleMobile":725,"button":726,"config":731},"Duo Agent Platform delivers 400% ROI, per new Forrester Consulting study.","400% ROI: Forrester TEI for GitLab Duo",{"text":343,"config":727},{"href":728,"dataGaName":729,"dataGaLocation":730},"https://about.gitlab.com/blog/gitlab-duo-agent-platform-delivers-400-percent-roi/","forrester-tei-dap-banner","global-banner",{"layout":732,"disabled":280},"release",{"data":734},{"text":735,"source":736,"edit":742,"contribute":747,"config":752,"items":757,"minimal":967},"Git is a trademark of Software Freedom Conservancy and our use of 'GitLab' is under license",{"text":737,"config":738},"View page source",{"href":739,"dataGaName":740,"dataGaLocation":741},"https://gitlab.com/gitlab-com/marketing/digital-experience/about-gitlab-com/","page source","footer",{"text":743,"config":744},"Edit this page",{"href":745,"dataGaName":746,"dataGaLocation":741},"https://gitlab.com/gitlab-com/marketing/digital-experience/about-gitlab-com/-/blob/main/content/","web ide",{"text":748,"config":749},"Please contribute",{"href":750,"dataGaName":751,"dataGaLocation":741},"https://gitlab.com/gitlab-com/marketing/digital-experience/about-gitlab-com/-/blob/main/CONTRIBUTING.md/","please contribute",{"twitter":753,"facebook":754,"youtube":755,"linkedin":756},"https://twitter.com/gitlab","https://www.facebook.com/gitlab","https://www.youtube.com/channel/UCnMGQ8QHMAnVIsI3xJrihhg","https://www.linkedin.com/company/gitlab-com",[758,805,859,903,935],{"title":448,"links":759,"subMenu":774},[760,764,769],{"text":761,"config":762},"View plans",{"href":450,"dataGaName":763,"dataGaLocation":741},"view plans",{"text":765,"config":766},"Why Premium?",{"href":767,"dataGaName":768,"dataGaLocation":741},"/pricing/premium/","why premium",{"text":770,"config":771},"Why Ultimate?",{"href":772,"dataGaName":773,"dataGaLocation":741},"/pricing/ultimate/","why ultimate",[775],{"title":776,"links":777},"Contact Us",[778,781,783,785,790,795,800],{"text":779,"config":780},"Contact sales",{"href":631,"dataGaName":311,"dataGaLocation":741},{"text":634,"config":782},{"href":636,"dataGaName":637,"dataGaLocation":741},{"text":639,"config":784},{"href":641,"dataGaName":642,"dataGaLocation":741},{"text":786,"config":787},"Status",{"href":788,"dataGaName":789,"dataGaLocation":741},"https://status.gitlab.com/","status",{"text":791,"config":792},"Terms of use",{"href":793,"dataGaName":794,"dataGaLocation":741},"/terms/","terms of use",{"text":796,"config":797},"Privacy statement",{"href":798,"dataGaName":799,"dataGaLocation":741},"/privacy/","privacy statement",{"text":801,"config":802},"Cookie preferences",{"dataGaName":803,"dataGaLocation":741,"id":804,"isOneTrustButton":283},"cookie preferences","ot-sdk-btn",{"title":348,"links":806,"subMenu":815},[807,811],{"text":808,"config":809},"DevSecOps platform",{"href":330,"dataGaName":810,"dataGaLocation":741},"devsecops platform",{"text":812,"config":813},"AI-Assisted Development",{"href":337,"dataGaName":814,"dataGaLocation":741},"ai-assisted development",[816],{"title":817,"links":818},"Topics",[819,824,829,834,839,844,849,854],{"text":820,"config":821},"CICD",{"href":822,"dataGaName":823,"dataGaLocation":741},"/topics/ci-cd/","cicd",{"text":825,"config":826},"GitOps",{"href":827,"dataGaName":828,"dataGaLocation":741},"/topics/gitops/","gitops",{"text":830,"config":831},"DevOps",{"href":832,"dataGaName":833,"dataGaLocation":741},"/topics/devops/","devops",{"text":835,"config":836},"Version Control",{"href":837,"dataGaName":838,"dataGaLocation":741},"/topics/version-control/","version control",{"text":840,"config":841},"DevSecOps",{"href":842,"dataGaName":843,"dataGaLocation":741},"/topics/devsecops/","devsecops",{"text":845,"config":846},"Cloud Native",{"href":847,"dataGaName":848,"dataGaLocation":741},"/topics/cloud-native/","cloud native",{"text":850,"config":851},"AI for Coding",{"href":852,"dataGaName":853,"dataGaLocation":741},"/topics/devops/ai-for-coding/","ai for coding",{"text":855,"config":856},"Agentic AI",{"href":857,"dataGaName":858,"dataGaLocation":741},"/topics/agentic-ai/","agentic ai",{"title":860,"links":861},"Solutions",[862,864,866,871,875,878,882,885,887,890,893,898],{"text":392,"config":863},{"href":387,"dataGaName":392,"dataGaLocation":741},{"text":381,"config":865},{"href":364,"dataGaName":365,"dataGaLocation":741},{"text":867,"config":868},"Agile development",{"href":869,"dataGaName":870,"dataGaLocation":741},"/solutions/agile-delivery/","agile delivery",{"text":872,"config":873},"SCM",{"href":377,"dataGaName":874,"dataGaLocation":741},"source code management",{"text":820,"config":876},{"href":370,"dataGaName":877,"dataGaLocation":741},"continuous integration & delivery",{"text":879,"config":880},"Value stream management",{"href":420,"dataGaName":881,"dataGaLocation":741},"value stream management",{"text":825,"config":883},{"href":884,"dataGaName":828,"dataGaLocation":741},"/solutions/gitops/",{"text":430,"config":886},{"href":433,"dataGaName":434,"dataGaLocation":741},{"text":888,"config":889},"Small business",{"href":439,"dataGaName":440,"dataGaLocation":741},{"text":891,"config":892},"Public sector",{"href":445,"dataGaName":446,"dataGaLocation":741},{"text":894,"config":895},"Education",{"href":896,"dataGaName":897,"dataGaLocation":741},"/solutions/education/","education",{"text":899,"config":900},"Financial services",{"href":901,"dataGaName":902,"dataGaLocation":741},"/solutions/finance/","financial services",{"title":453,"links":904},[905,907,909,911,914,916,919,921,923,925,927,929,931,933],{"text":466,"config":906},{"href":468,"dataGaName":469,"dataGaLocation":741},{"text":471,"config":908},{"href":473,"dataGaName":474,"dataGaLocation":741},{"text":476,"config":910},{"href":478,"dataGaName":479,"dataGaLocation":741},{"text":481,"config":912},{"href":483,"dataGaName":913,"dataGaLocation":741},"docs",{"text":504,"config":915},{"href":506,"dataGaName":507,"dataGaLocation":741},{"text":917,"config":918},"What's new",{"href":563,"dataGaName":564,"dataGaLocation":741},{"text":499,"config":920},{"href":501,"dataGaName":502,"dataGaLocation":741},{"text":518,"config":922},{"href":520,"dataGaName":521,"dataGaLocation":741},{"text":526,"config":924},{"href":528,"dataGaName":529,"dataGaLocation":741},{"text":531,"config":926},{"href":533,"dataGaName":258,"dataGaLocation":741},{"text":535,"config":928},{"href":537,"dataGaName":538,"dataGaLocation":741},{"text":540,"config":930},{"href":542,"dataGaName":543,"dataGaLocation":741},{"text":545,"config":932},{"href":547,"dataGaName":548,"dataGaLocation":741},{"text":550,"config":934},{"href":552,"dataGaName":553,"dataGaLocation":741},{"title":566,"links":936},[937,939,941,943,945,947,951,956,958,960,962],{"text":574,"config":938},{"href":576,"dataGaName":568,"dataGaLocation":741},{"text":579,"config":940},{"href":581,"dataGaName":582,"dataGaLocation":741},{"text":587,"config":942},{"href":589,"dataGaName":590,"dataGaLocation":741},{"text":592,"config":944},{"href":594,"dataGaName":595,"dataGaLocation":741},{"text":597,"config":946},{"href":599,"dataGaName":600,"dataGaLocation":741},{"text":948,"config":949},"Sustainability",{"href":950,"dataGaName":948,"dataGaLocation":741},"/sustainability/",{"text":952,"config":953},"Diversity, inclusion and belonging (DIB)",{"href":954,"dataGaName":955,"dataGaLocation":741},"/diversity-inclusion-belonging/","Diversity, inclusion and belonging",{"text":602,"config":957},{"href":604,"dataGaName":605,"dataGaLocation":741},{"text":612,"config":959},{"href":614,"dataGaName":615,"dataGaLocation":741},{"text":617,"config":961},{"href":619,"dataGaName":620,"dataGaLocation":741},{"text":963,"config":964},"Modern Slavery Transparency Statement",{"href":965,"dataGaName":966,"dataGaLocation":741},"https://handbook.gitlab.com/handbook/legal/modern-slavery-act-transparency-statement/","modern slavery transparency statement",{"items":968},[969,972,975],{"text":970,"config":971},"Terms",{"href":793,"dataGaName":794,"dataGaLocation":741},{"text":973,"config":974},"Cookies",{"dataGaName":803,"dataGaLocation":741,"id":804,"isOneTrustButton":283},{"text":976,"config":977},"Privacy",{"href":798,"dataGaName":799,"dataGaLocation":741},[979],{"id":980,"title":7,"body":279,"config":981,"content":983,"description":279,"extension":986,"meta":987,"navigation":283,"path":988,"seo":989,"stem":990,"__hash__":991},"blogAuthors/en-us/blog/authors/tyler-williams.yml",{"template":982},"BlogAuthor",{"name":7,"config":984},{"headshot":267,"ctfId":985},"tywilliams","yml",{},"/en-us/blog/authors/tyler-williams",{},"en-us/blog/authors/tyler-williams","E2cqNSZ9NTH20nmxNn6wSYi3bxEvIgwPWQSiIP3od60",[993,1000,1008],{"title":994,"description":995,"heroImage":281,"category":275,"date":996,"authors":997,"slug":999,"externalUrl":279},"CEO Shadow Takeaways from Jacie","Recap of my experience in the CEO Shadow Program.","2021-05-18",[998],"Jacie Bandur","ceo-shadow-recap",{"title":1001,"description":1002,"heroImage":1003,"category":275,"date":1004,"authors":1005,"slug":1007,"externalUrl":279},"Why I love contributing to GitLab","Making small meaningful changes is what it's all about.","https://res.cloudinary.com/about-gitlab-com/image/upload/v1749679501/Blog/Hero%20Images/new-feature.png","2021-05-11",[1006],"Austin Regnery","why-i-love-contributing-to-gitlab",{"title":1009,"description":1010,"heroImage":1011,"category":275,"date":1004,"authors":1012,"slug":1014,"externalUrl":279},"Placebo Lines on the Pipeline Graph","Have you noticed the connecting lines missing on your pipelines lately? Here's why","https://res.cloudinary.com/about-gitlab-com/image/upload/v1749679507/Blog/Hero%20Images/ci-cd.png",[1013],"Sam Beckham","placebo-lines-on-the-pipeline-graph",{"promotions":1016},[1017,1031,1043,1055],{"id":1018,"categories":1019,"header":1021,"text":1022,"button":1023,"image":1028},"ai-modernization",[1020],"ai","Is AI achieving its promise at scale?","Quiz will take 5 minutes or less",{"text":1024,"config":1025},"Get your AI maturity score",{"href":1026,"dataGaName":1027,"dataGaLocation":507},"/assessments/ai-modernization-assessment/","modernization assessment",{"config":1029},{"src":1030},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1772138786/qix0m7kwnd8x2fh1zq49.png",{"id":1032,"categories":1033,"header":1035,"text":1022,"button":1036,"image":1040},"devops-modernization",[1034,843],"product","Are you just managing tools or shipping innovation?",{"text":1037,"config":1038},"Get your DevOps maturity score",{"href":1039,"dataGaName":1027,"dataGaLocation":507},"/assessments/devops-modernization-assessment/",{"config":1041},{"src":1042},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1772138785/eg818fmakweyuznttgid.png",{"id":1044,"categories":1045,"header":1047,"text":1022,"button":1048,"image":1052},"security-modernization",[1046],"security","Are you trading speed for security?",{"text":1049,"config":1050},"Get your security maturity score",{"href":1051,"dataGaName":1027,"dataGaLocation":507},"/assessments/security-modernization-assessment/",{"config":1053},{"src":1054},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1772138786/p4pbqd9nnjejg5ds6mdk.png",{"id":1056,"paths":1057,"header":1060,"text":1061,"button":1062,"image":1067},"github-azure-migration",[1058,1059],"migration-from-azure-devops-to-gitlab","integrating-azure-devops-scm-and-gitlab","Is your team ready for GitHub's Azure move?","GitHub is already rebuilding around Azure. Find out what it means for you.",{"text":1063,"config":1064},"See how GitLab compares to GitHub",{"href":1065,"dataGaName":1066,"dataGaLocation":507},"/compare/gitlab-vs-github/github-azure-migration/","github azure migration",{"config":1068},{"src":1042},{"header":1070,"blurb":1071,"button":1072,"secondaryButton":1077},"Start building faster today","See what your team can do with the intelligent orchestration platform for DevSecOps.\n",{"text":1073,"config":1074},"Get your free trial",{"href":1075,"dataGaName":306,"dataGaLocation":1076},"https://gitlab.com/-/trial_registrations/new?glm_content=default-saas-trial&glm_source=about.gitlab.com/","feature",{"text":779,"config":1078},{"href":631,"dataGaName":311,"dataGaLocation":1076},1786803771652]