[{"data":1,"prerenderedAt":1113},["ShallowReactive",2],{"/blog/gitlab-pages-for-covid":3,"navigation-en-us":330,"banner-en-us":757,"footer-en-us":767,"blog-post-authors-en-us-Matt Nohr":1011,"blog-related-posts-en-us-gitlab-pages-for-covid":1025,"blog-promotions-en-us":1049,"next-steps-en-us":1103},{"id":4,"title":5,"authors":6,"body":8,"category":307,"date":308,"description":309,"extension":310,"externalUrl":311,"faq":311,"featured":312,"heroImage":313,"meta":314,"navigation":315,"path":316,"seo":317,"slug":321,"stem":322,"tags":323,"template":328,"updatedDate":311,"__hash__":329},"blogPosts/en-us/blog/gitlab-pages-for-covid.md","Using GitLab Pages to Report Local COVID-19 Rates",[7],"Matt Nohr",{"type":9,"value":10,"toc":300},"minimark",[11,16,20,31,34,37,49,53,56,59,80,87,94,98,101,107,134,178,181,232,241,248,252,261,264,270,274,282,296],[12,13,15],"h2",{"id":14},"finding-local-covid-rates","Finding Local COVID Rates",[17,18,19],"p",{},"I live in the U.S. state of Minnesota. Recently the state government provided recommendations for how and when to open schools in the fall. The guidance was based on the infection rates of the COVID-19 disease. In simple terms, the higher the rates, the less in-person the school should be. The actual calculation I needed was:",[21,22,28],"pre",{"className":23,"code":25,"language":26,"meta":27},[24],"language-text","total number of cases in your area over the past 2 weeks per 10,000 residents\n","text","",[29,30,25],"code",{"__ignoreMap":27},[17,32,33],{},"I have three kids in school, so when I heard this recommendation I went to find out this value for my area. It turned out to be a difficult statistic to find. Along with the announcement my state government released a set of data, but it was about three weeks behind the current rates. I found different sets of data available, but they either reported the daily case rate or a total count of infections, not this very specific calculation.",[17,35,36],{},"See Also:",[38,39,40],"ul",{},[41,42,43],"li",{},[44,45,48],"a",{"href":46,"rel":47},"https://about.gitlab.com/blog/startup-covid-tracking/",[],"How an analytics software startup took aim at COVID-19",[12,50,52],{"id":51},"gitlab-pages-to-the-rescue","GitLab Pages to the Rescue",[17,54,55],{},"I started by manually calculating the values with the data that I could find. This worked, but every time there were updated statistics, I had to go back and recalculate the value. I wanted a way to have this information available for me and others with the up-to-date information whenever I looked at it.",[17,57,58],{},"My process and output quickly evolved:",[60,61,62,65,68,71],"ol",{},[41,63,64],{},"I decided I would just write a script to download the data and do the calculation for me",[41,66,67],{},"Once I had this working I thought the next step would be to automatically graph the results",[41,69,70],{},"Then I thought I could publish the graphs on a website",[41,72,73,74,79],{},"If I was going to publish them, I thought the best thing to do to get this done quickly would be to use ",[44,75,78],{"href":76,"rel":77},"https://docs.gitlab.com/user/project/pages/",[],"GitLab Pages",".",[17,81,82,83],{},"The result is a simple static website: ",[44,84,85],{"href":85,"rel":86},"https://mattnohr.gitlab.io/covid-county/",[],[17,88,89],{},[90,91],"img",{"alt":92,"src":93},"Example Chart from website","https://res.cloudinary.com/about-gitlab-com/image/upload/v1782398421/blog/Content%20Images/gitlab-pages-for-covid/output-chart.png",[12,95,97],{"id":96},"how-it-works","How It Works",[17,99,100],{},"The basic flow for my new “system” is:",[21,102,105],{"className":103,"code":104,"language":26,"meta":27},[24],"(*) --> \"Download data\"\n--> \"Calculate the rates\"\n--> \"Create a new .csv file with daily calculated values\"\n--> \"Publish .csv file to GitLab pages\"\n--> \"Use GitLab pages to serve static website that reads .csv\"\n--> (*)\n",[29,106,104],{"__ignoreMap":27},[17,108,109,110,115,116,121,122,127,128,133],{},"The first few steps are done with a simple ",[44,111,114],{"href":112,"rel":113},"https://kotlinlang.org/",[],"Kotlin"," script that is run using the ",[44,117,120],{"href":118,"rel":119},"https://gradle.org/",[],"Gradle build tool",". I used ",[44,123,126],{"href":124,"rel":125},"https://docs.gitlab.com/ci/",[],"GitLab CI/CD"," pipelines to run a job to do that automatically. You can find an ",[44,129,132],{"href":130,"rel":131},"https://gitlab.com/gitlab-org/gitlab/-/blob/master/lib/gitlab/ci/templates/Gradle.gitlab-ci.yml",[],"example gradle .gitlab-ci.yml file here",". The basics of this step for me look like:",[21,135,139],{"className":136,"code":137,"language":138,"meta":27,"style":27},"language-yml shiki shiki-themes github-light","build:\n  stage: build\n  script: gradle --build-cache run\n\n","yml",[29,140,141,154,167],{"__ignoreMap":27},[142,143,146,150],"span",{"class":144,"line":145},"line",1,[142,147,149],{"class":148},"shJU0","build",[142,151,153],{"class":152},"sgsFI",":\n",[142,155,157,160,163],{"class":144,"line":156},2,[142,158,159],{"class":148},"  stage",[142,161,162],{"class":152},": ",[142,164,166],{"class":165},"sYBdl","build\n",[142,168,170,173,175],{"class":144,"line":169},3,[142,171,172],{"class":148},"  script",[142,174,162],{"class":152},[142,176,177],{"class":165},"gradle --build-cache run\n",[17,179,180],{},"The next step was to get it published to GitLab pages. That also used a GitLab CI/CD job. It simply needed to move the .csv results out of the build directory into the “public” directory that is used to host GitLab pages.",[21,182,184],{"className":136,"code":183,"language":138,"meta":27,"style":27},"pages:\n  stage: deploy\n  dependencies:\n    - build\n  script:\n    - mv build/data.csv public/\n\n",[29,185,186,193,202,209,217,224],{"__ignoreMap":27},[142,187,188,191],{"class":144,"line":145},[142,189,190],{"class":148},"pages",[142,192,153],{"class":152},[142,194,195,197,199],{"class":144,"line":156},[142,196,159],{"class":148},[142,198,162],{"class":152},[142,200,201],{"class":165},"deploy\n",[142,203,204,207],{"class":144,"line":169},[142,205,206],{"class":148},"  dependencies",[142,208,153],{"class":152},[142,210,212,215],{"class":144,"line":211},4,[142,213,214],{"class":152},"    - ",[142,216,166],{"class":165},[142,218,220,222],{"class":144,"line":219},5,[142,221,172],{"class":148},[142,223,153],{"class":152},[142,225,227,229],{"class":144,"line":226},6,[142,228,214],{"class":152},[142,230,231],{"class":165},"mv build/data.csv public/\n",[17,233,234,235,240],{},"The actual static webpage uses ",[44,236,239],{"href":237,"rel":238},"https://d3js.org/",[],"d3.js"," that is able to read the data from a .csv file and graph it.",[17,242,243,244],{},"My GitLab project can be found here: ",[44,245,246],{"href":246,"rel":247},"https://gitlab.com/mattnohr/covid-county",[],[12,249,251],{"id":250},"running-on-a-schedule","Running on a Schedule",[17,253,254,255,260],{},"Once I had the system up and running with GitLab CI, I was able to use ",[44,256,259],{"href":257,"rel":258},"https://docs.gitlab.com/ci/pipelines/schedules/",[],"GitLab Pipeline Schedules"," to run the script a few times a day to get updated data. Now I do not have to worry about when the data is updated, I can just review my GitLab Pages site to see the latest values.",[17,262,263],{},"Pipeline Scheudles let you easily schedule pipelines daily, weekly, or monthly. Since I wanted this to run multiple times a day, I used a cron schedule to run the pipeline 4 times a day on weekdays:",[21,265,268],{"className":266,"code":267,"language":26,"meta":27},[24],"0 8,12,16,20 * * 1-5\n",[29,269,267],{"__ignoreMap":27},[12,271,273],{"id":272},"result","Result",[17,275,276,277,281],{},"Now I have a ",[44,278,280],{"href":85,"rel":279},[],"simple website"," that has the most up-to-date calculations for this specific value for my local area. Now I just need to wait for our local school board to make a final decision on how schools will look!",[17,283,284,285,290,291],{},"Cover image by ",[44,286,289],{"href":287,"rel":288},"https://unsplash.com/@thisisengineering",[],"@ThisisEngineering RAEng"," on ",[44,292,295],{"href":293,"rel":294},"https://unsplash.com/photos/0jTZTMyGym8",[],"Unsplash",[297,298,299],"style",{},"html pre.shiki code .shJU0, html code.shiki .shJU0{--shiki-default:#22863A}html pre.shiki code .sgsFI, html code.shiki .sgsFI{--shiki-default:#24292E}html pre.shiki code .sYBdl, html code.shiki .sYBdl{--shiki-default:#032F62}html .default .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}",{"title":27,"searchDepth":156,"depth":156,"links":301},[302,303,304,305,306],{"id":14,"depth":156,"text":15},{"id":51,"depth":156,"text":52},{"id":96,"depth":156,"text":97},{"id":250,"depth":156,"text":251},{"id":272,"depth":156,"text":273},"unfiltered","2020-08-06","How I used GitLab pages to publish up-to-date local infection rates.","md",null,false,"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749681476/Blog/Hero%20Images/thisisengineering-raeng-0jTZTMyGym8-unsplash.jpg",{},true,"/en-us/blog/gitlab-pages-for-covid",{"title":5,"description":309,"ogTitle":5,"ogDescription":309,"noIndex":312,"ogImage":313,"ogUrl":318,"ogSiteName":319,"ogType":320,"canonicalUrls":318},"https://about.gitlab.com/blog/gitlab-pages-for-covid","https://about.gitlab.com","article","gitlab-pages-for-covid","en-us/blog/gitlab-pages-for-covid",[324,325,326,327],"GitOps","agile","testing","CI/CD","BlogPost","ndfHM5mpHQje4Q1PAr5eOEp1puxVHLduOQFd8tdSdR0",{"logo":331,"freeTrial":336,"sales":341,"login":346,"items":351,"search":677,"minimal":708,"duo":727,"switchNav":736,"pricingDeployment":747},{"config":332},{"href":333,"dataGaName":334,"dataGaLocation":335},"/","gitlab logo","header",{"text":337,"config":338},"Get free trial",{"href":339,"dataGaName":340,"dataGaLocation":335},"https://gitlab.com/-/trial_registrations/new?glm_source=about.gitlab.com&glm_content=default-saas-trial/","free trial",{"text":342,"config":343},"Request a demo",{"href":344,"dataGaName":345,"dataGaLocation":335},"/sales/?contact-topic=request-demo","sales",{"text":347,"config":348},"Sign in",{"href":349,"dataGaName":350,"dataGaLocation":335},"https://gitlab.com/users/sign_in/","sign in",[352,381,480,485,599,655],{"text":353,"config":354,"menu":356},"Platform",{"dataNavLevelOne":355},"platform",{"type":357,"columns":358},"cards",[359,365,373],{"title":353,"description":360,"link":361},"The intelligent orchestration platform for DevSecOps",{"text":362,"config":363},"Explore our Platform",{"href":364,"dataGaName":355,"dataGaLocation":335},"/platform/",{"title":366,"description":367,"link":368},"GitLab Duo Agent Platform","Agentic AI for the entire software lifecycle",{"text":369,"config":370},"Meet GitLab Duo",{"href":371,"dataGaName":372,"dataGaLocation":335},"/gitlab-duo-agent-platform/","gitlab duo agent platform",{"title":374,"description":375,"link":376},"Why GitLab","See the top reasons enterprises choose GitLab",{"text":377,"config":378},"Learn more",{"href":379,"dataGaName":380,"dataGaLocation":335},"/why-gitlab/","why gitlab",{"text":382,"left":315,"config":383,"menu":385},"Product",{"dataNavLevelOne":384},"solutions",{"type":386,"link":387,"columns":391,"feature":459},"lists",{"text":388,"config":389},"View all Solutions",{"href":390,"dataGaName":384,"dataGaLocation":335},"/solutions/",[392,415,438],{"title":393,"description":394,"link":395,"items":400},"Automation","CI/CD and automation to accelerate deployment",{"config":396},{"icon":397,"href":398,"dataGaName":399,"dataGaLocation":335},"AutomatedCodeAlt","/solutions/delivery-automation/","automated software delivery",[401,404,407,411],{"text":327,"config":402},{"href":403,"dataGaLocation":335,"dataGaName":327},"/solutions/continuous-integration/",{"text":366,"config":405},{"href":371,"dataGaLocation":335,"dataGaName":406},"gitlab duo agent platform - product menu",{"text":408,"config":409},"Source Code Management",{"href":410,"dataGaLocation":335,"dataGaName":408},"/solutions/source-code-management/",{"text":412,"config":413},"Automated Software Delivery",{"href":398,"dataGaLocation":335,"dataGaName":414},"Automated software delivery",{"title":416,"description":417,"link":418,"items":423},"Security","Deliver code faster without compromising security",{"config":419},{"href":420,"dataGaName":421,"dataGaLocation":335,"icon":422},"/solutions/application-security-testing/","security and compliance","ShieldCheckLight",[424,428,433],{"text":425,"config":426},"Application Security Testing",{"href":420,"dataGaName":427,"dataGaLocation":335},"Application security testing",{"text":429,"config":430},"Software Supply Chain Security",{"href":431,"dataGaLocation":335,"dataGaName":432},"/solutions/supply-chain/","Software supply chain security",{"text":434,"config":435},"Software Compliance",{"href":436,"dataGaName":437,"dataGaLocation":335},"/solutions/software-compliance/","software compliance",{"title":439,"link":440,"items":445},"Measurement",{"config":441},{"icon":442,"href":443,"dataGaName":444,"dataGaLocation":335},"DigitalTransformation","/solutions/visibility-measurement/","visibility and measurement",[446,450,454],{"text":447,"config":448},"Visibility & Measurement",{"href":443,"dataGaLocation":335,"dataGaName":449},"Visibility and Measurement",{"text":451,"config":452},"Value Stream Management",{"href":453,"dataGaLocation":335,"dataGaName":451},"/solutions/value-stream-management/",{"text":455,"config":456},"Analytics & Insights",{"href":457,"dataGaLocation":335,"dataGaName":458},"/solutions/analytics-and-insights/","Analytics and insights",{"title":460,"type":386,"items":461},"GitLab for",[462,468,474],{"text":463,"config":464},"Enterprise",{"icon":465,"href":466,"dataGaLocation":335,"dataGaName":467},"Building","/enterprise/","enterprise",{"text":469,"config":470},"Small Business",{"icon":471,"href":472,"dataGaLocation":335,"dataGaName":473},"Work","/small-business/","small business",{"text":475,"config":476},"Public Sector",{"icon":477,"href":478,"dataGaLocation":335,"dataGaName":479},"Organization","/solutions/public-sector/","public sector",{"text":481,"config":482},"Pricing",{"href":483,"dataGaName":484,"dataGaLocation":335,"dataNavLevelOne":484},"/pricing/","pricing",{"text":486,"config":487,"menu":489},"Resources",{"dataNavLevelOne":488},"resources",{"type":386,"link":490,"columns":494,"feature":588},{"text":491,"config":492},"View all resources",{"href":493,"dataGaName":488,"dataGaLocation":335},"/resources/",[495,528,555],{"title":496,"items":497},"Getting started",[498,503,508,513,518,523],{"text":499,"config":500},"Install",{"href":501,"dataGaName":502,"dataGaLocation":335},"/install/","install",{"text":504,"config":505},"Quick start guides",{"href":506,"dataGaName":507,"dataGaLocation":335},"/get-started/","quick setup checklists",{"text":509,"config":510},"Learn",{"href":511,"dataGaLocation":335,"dataGaName":512},"https://university.gitlab.com/","learn",{"text":514,"config":515},"Product documentation",{"href":516,"dataGaName":517,"dataGaLocation":335},"https://docs.gitlab.com/","product documentation",{"text":519,"config":520},"Best practice videos",{"href":521,"dataGaName":522,"dataGaLocation":335},"/getting-started-videos/","best practice videos",{"text":524,"config":525},"Integrations",{"href":526,"dataGaName":527,"dataGaLocation":335},"/integrations/","integrations",{"title":529,"items":530},"Discover",[531,536,541,546,550],{"text":532,"config":533},"Customer success stories",{"href":534,"dataGaName":535,"dataGaLocation":335},"/customers/","customer success stories",{"text":537,"config":538},"Blog",{"href":539,"dataGaName":540,"dataGaLocation":335},"/blog/","blog",{"text":542,"config":543},"Demo Hub",{"href":544,"dataGaName":545,"dataGaLocation":335},"/demo-hub/","demo hub",{"text":547,"config":548},"The Source",{"href":549,"dataGaName":540,"dataGaLocation":335},"/the-source/",{"text":551,"config":552},"Remote",{"href":553,"dataGaName":554,"dataGaLocation":335},"https://handbook.gitlab.com/handbook/company/culture/all-remote/","remote",{"title":556,"items":557},"Connect",[558,563,568,573,578,583],{"text":559,"config":560},"GitLab Services",{"href":561,"dataGaName":562,"dataGaLocation":335},"/services/","services",{"text":564,"config":565},"Contribute",{"href":566,"dataGaName":567,"dataGaLocation":335},"https://contributors.gitlab.com","contribute",{"text":569,"config":570},"Community",{"href":571,"dataGaName":572,"dataGaLocation":335},"/community/","community",{"text":574,"config":575},"Forum",{"href":576,"dataGaName":577,"dataGaLocation":335},"https://forum.gitlab.com/","forum",{"text":579,"config":580},"Events",{"href":581,"dataGaName":582,"dataGaLocation":335},"/events/","events",{"text":584,"config":585},"Partners",{"href":586,"dataGaName":587,"dataGaLocation":335},"/partners/","partners",{"config":589,"title":592,"text":593,"link":594},{"background":590,"textColor":591},"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":595,"config":596},"Read the latest",{"href":597,"dataGaName":598,"dataGaLocation":335},"/whats-new/","whats new",{"text":600,"config":601,"menu":603},"Company",{"dataNavLevelOne":602},"company",{"type":386,"columns":604},[605],{"items":606},[607,612,618,620,625,630,635,640,645,650],{"text":608,"config":609},"About",{"href":610,"dataGaName":611,"dataGaLocation":335},"/company/","about",{"text":613,"config":614,"footerGa":617},"Jobs",{"href":615,"dataGaName":616,"dataGaLocation":335},"/jobs/","jobs",{"dataGaName":616},{"text":579,"config":619},{"href":581,"dataGaName":582,"dataGaLocation":335},{"text":621,"config":622},"Leadership",{"href":623,"dataGaName":624,"dataGaLocation":335},"/company/team/e-group/","leadership",{"text":626,"config":627},"Handbook",{"href":628,"dataGaName":629,"dataGaLocation":335},"https://handbook.gitlab.com/","handbook",{"text":631,"config":632},"Investor relations",{"href":633,"dataGaName":634,"dataGaLocation":335},"https://ir.gitlab.com/overview/default.aspx","investor relations",{"text":636,"config":637},"Trust Center",{"href":638,"dataGaName":639,"dataGaLocation":335},"/security/","trust center",{"text":641,"config":642},"AI Transparency Center",{"href":643,"dataGaName":644,"dataGaLocation":335},"/ai-transparency-center/","ai transparency center",{"text":646,"config":647},"Newsletter",{"href":648,"dataGaName":649,"dataGaLocation":335},"/company/contact/#contact-forms","newsletter",{"text":651,"config":652},"Press",{"href":653,"dataGaName":654,"dataGaLocation":335},"/press/","press",{"text":656,"config":657,"menu":658},"Contact us",{"dataNavLevelOne":602},{"type":386,"columns":659},[660],{"items":661},[662,667,672],{"text":663,"config":664},"Talk to sales",{"href":665,"dataGaName":666,"dataGaLocation":335},"/sales/","talk to sales",{"text":668,"config":669},"Support portal",{"href":670,"dataGaName":671,"dataGaLocation":335},"https://support.gitlab.com/hc/en-us","support portal",{"text":673,"config":674},"Customer portal",{"href":675,"dataGaName":676,"dataGaLocation":335},"https://customers.gitlab.com/customers/sign_in/","customer portal",{"close":678,"login":679,"suggestions":686},"Close",{"text":680,"link":681},"To search repositories and projects, login to",{"text":682,"config":683},"gitlab.com",{"href":349,"dataGaName":684,"dataGaLocation":685},"search login","search",{"text":687,"default":688},"Suggestions",[689,691,695,697,701,705],{"text":366,"config":690},{"href":371,"dataGaName":366,"dataGaLocation":685},{"text":692,"config":693},"Code Suggestions (AI)",{"href":694,"dataGaName":692,"dataGaLocation":685},"/solutions/code-suggestions/",{"text":327,"config":696},{"href":403,"dataGaName":327,"dataGaLocation":685},{"text":698,"config":699},"GitLab on AWS",{"href":700,"dataGaName":698,"dataGaLocation":685},"/partners/technology-partners/aws/",{"text":702,"config":703},"GitLab on Google Cloud",{"href":704,"dataGaName":702,"dataGaLocation":685},"/partners/technology-partners/google-cloud-platform/",{"text":706,"config":707},"Why GitLab?",{"href":379,"dataGaName":706,"dataGaLocation":685},{"freeTrial":709,"mobileIcon":714,"desktopIcon":719,"secondaryButton":722},{"text":710,"config":711},"Start free trial",{"href":712,"dataGaName":340,"dataGaLocation":713},"https://gitlab.com/-/trials/new/","nav",{"altText":715,"config":716},"Gitlab Icon",{"src":717,"dataGaName":718,"dataGaLocation":713},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1758203874/jypbw1jx72aexsoohd7x.svg","gitlab icon",{"altText":715,"config":720},{"src":721,"dataGaName":718,"dataGaLocation":713},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1758203875/gs4c8p8opsgvflgkswz9.svg",{"text":723,"config":724},"Get Started",{"href":725,"dataGaName":726,"dataGaLocation":713},"https://gitlab.com/-/trial_registrations/new?glm_source=about.gitlab.com/get-started/","get started",{"freeTrial":728,"mobileIcon":732,"desktopIcon":734},{"text":729,"config":730},"Learn more about GitLab Duo",{"href":371,"dataGaName":731,"dataGaLocation":713},"gitlab duo",{"altText":715,"config":733},{"src":717,"dataGaName":718,"dataGaLocation":713},{"altText":715,"config":735},{"src":721,"dataGaName":718,"dataGaLocation":713},{"button":737,"mobileIcon":742,"desktopIcon":744},{"text":738,"config":739},"/switch",{"href":740,"dataGaName":741,"dataGaLocation":713},"#contact","switch",{"altText":715,"config":743},{"src":717,"dataGaName":718,"dataGaLocation":713},{"altText":715,"config":745},{"src":746,"dataGaName":718,"dataGaLocation":713},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1773335277/ohhpiuoxoldryzrnhfrh.png",{"freeTrial":748,"mobileIcon":753,"desktopIcon":755},{"text":749,"config":750},"Back to pricing",{"href":483,"dataGaName":751,"dataGaLocation":713,"icon":752},"back to pricing","GoBack",{"altText":715,"config":754},{"src":717,"dataGaName":718,"dataGaLocation":713},{"altText":715,"config":756},{"src":721,"dataGaName":718,"dataGaLocation":713},{"title":758,"titleMobile":759,"button":760,"config":765},"Duo Agent Platform delivers 400% ROI, per new Forrester Consulting study.","400% ROI: Forrester TEI for GitLab Duo",{"text":377,"config":761},{"href":762,"dataGaName":763,"dataGaLocation":764},"https://about.gitlab.com/blog/gitlab-duo-agent-platform-delivers-400-percent-roi/","forrester-tei-dap-banner","global-banner",{"layout":766,"disabled":312},"release",{"data":768},{"text":769,"source":770,"edit":776,"contribute":781,"config":786,"items":791,"minimal":1000},"Git is a trademark of Software Freedom Conservancy and our use of 'GitLab' is under license",{"text":771,"config":772},"View page source",{"href":773,"dataGaName":774,"dataGaLocation":775},"https://gitlab.com/gitlab-com/marketing/digital-experience/about-gitlab-com/","page source","footer",{"text":777,"config":778},"Edit this page",{"href":779,"dataGaName":780,"dataGaLocation":775},"https://gitlab.com/gitlab-com/marketing/digital-experience/about-gitlab-com/-/blob/main/content/","web ide",{"text":782,"config":783},"Please contribute",{"href":784,"dataGaName":785,"dataGaLocation":775},"https://gitlab.com/gitlab-com/marketing/digital-experience/about-gitlab-com/-/blob/main/CONTRIBUTING.md/","please contribute",{"twitter":787,"facebook":788,"youtube":789,"linkedin":790},"https://twitter.com/gitlab","https://www.facebook.com/gitlab","https://www.youtube.com/channel/UCnMGQ8QHMAnVIsI3xJrihhg","https://www.linkedin.com/company/gitlab-com",[792,839,892,936,968],{"title":481,"links":793,"subMenu":808},[794,798,803],{"text":795,"config":796},"View plans",{"href":483,"dataGaName":797,"dataGaLocation":775},"view plans",{"text":799,"config":800},"Why Premium?",{"href":801,"dataGaName":802,"dataGaLocation":775},"/pricing/premium/","why premium",{"text":804,"config":805},"Why Ultimate?",{"href":806,"dataGaName":807,"dataGaLocation":775},"/pricing/ultimate/","why ultimate",[809],{"title":810,"links":811},"Contact Us",[812,815,817,819,824,829,834],{"text":813,"config":814},"Contact sales",{"href":665,"dataGaName":345,"dataGaLocation":775},{"text":668,"config":816},{"href":670,"dataGaName":671,"dataGaLocation":775},{"text":673,"config":818},{"href":675,"dataGaName":676,"dataGaLocation":775},{"text":820,"config":821},"Status",{"href":822,"dataGaName":823,"dataGaLocation":775},"https://status.gitlab.com/","status",{"text":825,"config":826},"Terms of use",{"href":827,"dataGaName":828,"dataGaLocation":775},"/terms/","terms of use",{"text":830,"config":831},"Privacy statement",{"href":832,"dataGaName":833,"dataGaLocation":775},"/privacy/","privacy statement",{"text":835,"config":836},"Cookie preferences",{"dataGaName":837,"dataGaLocation":775,"id":838,"isOneTrustButton":315},"cookie preferences","ot-sdk-btn",{"title":382,"links":840,"subMenu":849},[841,845],{"text":842,"config":843},"DevSecOps platform",{"href":364,"dataGaName":844,"dataGaLocation":775},"devsecops platform",{"text":846,"config":847},"AI-Assisted Development",{"href":371,"dataGaName":848,"dataGaLocation":775},"ai-assisted development",[850],{"title":851,"links":852},"Topics",[853,858,862,867,872,877,882,887],{"text":854,"config":855},"CICD",{"href":856,"dataGaName":857,"dataGaLocation":775},"/topics/ci-cd/","cicd",{"text":324,"config":859},{"href":860,"dataGaName":861,"dataGaLocation":775},"/topics/gitops/","gitops",{"text":863,"config":864},"DevOps",{"href":865,"dataGaName":866,"dataGaLocation":775},"/topics/devops/","devops",{"text":868,"config":869},"Version Control",{"href":870,"dataGaName":871,"dataGaLocation":775},"/topics/version-control/","version control",{"text":873,"config":874},"DevSecOps",{"href":875,"dataGaName":876,"dataGaLocation":775},"/topics/devsecops/","devsecops",{"text":878,"config":879},"Cloud Native",{"href":880,"dataGaName":881,"dataGaLocation":775},"/topics/cloud-native/","cloud native",{"text":883,"config":884},"AI for Coding",{"href":885,"dataGaName":886,"dataGaLocation":775},"/topics/devops/ai-for-coding/","ai for coding",{"text":888,"config":889},"Agentic AI",{"href":890,"dataGaName":891,"dataGaLocation":775},"/topics/agentic-ai/","agentic ai",{"title":893,"links":894},"Solutions",[895,897,899,904,908,911,915,918,920,923,926,931],{"text":425,"config":896},{"href":420,"dataGaName":425,"dataGaLocation":775},{"text":414,"config":898},{"href":398,"dataGaName":399,"dataGaLocation":775},{"text":900,"config":901},"Agile development",{"href":902,"dataGaName":903,"dataGaLocation":775},"/solutions/agile-delivery/","agile delivery",{"text":905,"config":906},"SCM",{"href":410,"dataGaName":907,"dataGaLocation":775},"source code management",{"text":854,"config":909},{"href":403,"dataGaName":910,"dataGaLocation":775},"continuous integration & delivery",{"text":912,"config":913},"Value stream management",{"href":453,"dataGaName":914,"dataGaLocation":775},"value stream management",{"text":324,"config":916},{"href":917,"dataGaName":861,"dataGaLocation":775},"/solutions/gitops/",{"text":463,"config":919},{"href":466,"dataGaName":467,"dataGaLocation":775},{"text":921,"config":922},"Small business",{"href":472,"dataGaName":473,"dataGaLocation":775},{"text":924,"config":925},"Public sector",{"href":478,"dataGaName":479,"dataGaLocation":775},{"text":927,"config":928},"Education",{"href":929,"dataGaName":930,"dataGaLocation":775},"/solutions/education/","education",{"text":932,"config":933},"Financial services",{"href":934,"dataGaName":935,"dataGaLocation":775},"/solutions/finance/","financial services",{"title":486,"links":937},[938,940,942,944,947,949,952,954,956,958,960,962,964,966],{"text":499,"config":939},{"href":501,"dataGaName":502,"dataGaLocation":775},{"text":504,"config":941},{"href":506,"dataGaName":507,"dataGaLocation":775},{"text":509,"config":943},{"href":511,"dataGaName":512,"dataGaLocation":775},{"text":514,"config":945},{"href":516,"dataGaName":946,"dataGaLocation":775},"docs",{"text":537,"config":948},{"href":539,"dataGaName":540,"dataGaLocation":775},{"text":950,"config":951},"What's new",{"href":597,"dataGaName":598,"dataGaLocation":775},{"text":532,"config":953},{"href":534,"dataGaName":535,"dataGaLocation":775},{"text":551,"config":955},{"href":553,"dataGaName":554,"dataGaLocation":775},{"text":559,"config":957},{"href":561,"dataGaName":562,"dataGaLocation":775},{"text":564,"config":959},{"href":566,"dataGaName":567,"dataGaLocation":775},{"text":569,"config":961},{"href":571,"dataGaName":572,"dataGaLocation":775},{"text":574,"config":963},{"href":576,"dataGaName":577,"dataGaLocation":775},{"text":579,"config":965},{"href":581,"dataGaName":582,"dataGaLocation":775},{"text":584,"config":967},{"href":586,"dataGaName":587,"dataGaLocation":775},{"title":600,"links":969},[970,972,974,976,978,980,984,989,991,993,995],{"text":608,"config":971},{"href":610,"dataGaName":602,"dataGaLocation":775},{"text":613,"config":973},{"href":615,"dataGaName":616,"dataGaLocation":775},{"text":621,"config":975},{"href":623,"dataGaName":624,"dataGaLocation":775},{"text":626,"config":977},{"href":628,"dataGaName":629,"dataGaLocation":775},{"text":631,"config":979},{"href":633,"dataGaName":634,"dataGaLocation":775},{"text":981,"config":982},"Sustainability",{"href":983,"dataGaName":981,"dataGaLocation":775},"/sustainability/",{"text":985,"config":986},"Diversity, inclusion and belonging (DIB)",{"href":987,"dataGaName":988,"dataGaLocation":775},"/diversity-inclusion-belonging/","Diversity, inclusion and belonging",{"text":636,"config":990},{"href":638,"dataGaName":639,"dataGaLocation":775},{"text":646,"config":992},{"href":648,"dataGaName":649,"dataGaLocation":775},{"text":651,"config":994},{"href":653,"dataGaName":654,"dataGaLocation":775},{"text":996,"config":997},"Modern Slavery Transparency Statement",{"href":998,"dataGaName":999,"dataGaLocation":775},"https://handbook.gitlab.com/handbook/legal/modern-slavery-act-transparency-statement/","modern slavery transparency statement",{"items":1001},[1002,1005,1008],{"text":1003,"config":1004},"Terms",{"href":827,"dataGaName":828,"dataGaLocation":775},{"text":1006,"config":1007},"Cookies",{"dataGaName":837,"dataGaLocation":775,"id":838,"isOneTrustButton":315},{"text":1009,"config":1010},"Privacy",{"href":832,"dataGaName":833,"dataGaLocation":775},[1012],{"id":1013,"title":7,"body":311,"config":1014,"content":1016,"description":311,"extension":138,"meta":1020,"navigation":315,"path":1021,"seo":1022,"stem":1023,"__hash__":1024},"blogAuthors/en-us/blog/authors/matt-nohr.yml",{"template":1015},"BlogAuthor",{"name":7,"config":1017},{"headshot":1018,"ctfId":1019},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749681473/Blog/Author%20Headshots/mnohr-headshot.jpg","mnohr",{},"/en-us/blog/authors/matt-nohr",{},"en-us/blog/authors/matt-nohr","LbEumfmssDWVLDz4GJDspBM51Xc8NLAn3mkMNizPqB4",[1026,1034,1042],{"title":1027,"description":1028,"heroImage":1029,"category":307,"date":1030,"authors":1031,"slug":1033,"externalUrl":311},"CEO Shadow Takeaways from Jacie","Recap of my experience in the CEO Shadow Program.","https://res.cloudinary.com/about-gitlab-com/image/upload/v1749664102/Blog/Hero%20Images/gitlab-values-cover.png","2021-05-18",[1032],"Jacie Bandur","ceo-shadow-recap",{"title":1035,"description":1036,"heroImage":1037,"category":307,"date":1038,"authors":1039,"slug":1041,"externalUrl":311},"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",[1040],"Austin Regnery","why-i-love-contributing-to-gitlab",{"title":1043,"description":1044,"heroImage":1045,"category":307,"date":1038,"authors":1046,"slug":1048,"externalUrl":311},"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",[1047],"Sam Beckham","placebo-lines-on-the-pipeline-graph",{"promotions":1050},[1051,1065,1077,1089],{"id":1052,"categories":1053,"header":1055,"text":1056,"button":1057,"image":1062},"ai-modernization",[1054],"ai","Is AI achieving its promise at scale?","Quiz will take 5 minutes or less",{"text":1058,"config":1059},"Get your AI maturity score",{"href":1060,"dataGaName":1061,"dataGaLocation":540},"/assessments/ai-modernization-assessment/","modernization assessment",{"config":1063},{"src":1064},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1772138786/qix0m7kwnd8x2fh1zq49.png",{"id":1066,"categories":1067,"header":1069,"text":1056,"button":1070,"image":1074},"devops-modernization",[1068,876],"product","Are you just managing tools or shipping innovation?",{"text":1071,"config":1072},"Get your DevOps maturity score",{"href":1073,"dataGaName":1061,"dataGaLocation":540},"/assessments/devops-modernization-assessment/",{"config":1075},{"src":1076},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1772138785/eg818fmakweyuznttgid.png",{"id":1078,"categories":1079,"header":1081,"text":1056,"button":1082,"image":1086},"security-modernization",[1080],"security","Are you trading speed for security?",{"text":1083,"config":1084},"Get your security maturity score",{"href":1085,"dataGaName":1061,"dataGaLocation":540},"/assessments/security-modernization-assessment/",{"config":1087},{"src":1088},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1772138786/p4pbqd9nnjejg5ds6mdk.png",{"id":1090,"paths":1091,"header":1094,"text":1095,"button":1096,"image":1101},"github-azure-migration",[1092,1093],"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":1097,"config":1098},"See how GitLab compares to GitHub",{"href":1099,"dataGaName":1100,"dataGaLocation":540},"/compare/gitlab-vs-github/github-azure-migration/","github azure migration",{"config":1102},{"src":1076},{"header":1104,"blurb":1105,"button":1106,"secondaryButton":1111},"Start building faster today","See what your team can do with the intelligent orchestration platform for DevSecOps.\n",{"text":1107,"config":1108},"Get your free trial",{"href":1109,"dataGaName":340,"dataGaLocation":1110},"https://gitlab.com/-/trial_registrations/new?glm_content=default-saas-trial&glm_source=about.gitlab.com/","feature",{"text":813,"config":1112},{"href":665,"dataGaName":345,"dataGaLocation":1110},1786803770272]