[{"data":1,"prerenderedAt":1348},["ShallowReactive",2],{"/blog/vuejs-app-gitlab":3,"navigation-en-us":563,"banner-en-us":990,"footer-en-us":1000,"blog-post-authors-en-us-Simon Tarchichi":1244,"blog-related-posts-en-us-vuejs-app-gitlab":1258,"blog-promotions-en-us":1284,"next-steps-en-us":1338},{"id":4,"title":5,"authors":6,"body":8,"category":544,"date":545,"description":546,"extension":547,"externalUrl":548,"faq":548,"featured":549,"heroImage":550,"meta":551,"navigation":215,"path":552,"seo":553,"slug":557,"stem":558,"tags":559,"template":561,"updatedDate":548,"__hash__":562},"blogPosts/en-us/blog/vuejs-app-gitlab.md","How to use GitLab CI/CD for Vue.js",[7],"Simon Tarchichi",{"type":9,"value":10,"toc":537},"minimark",[11,15,33,36,39,42,51,58,63,82,85,97,100,103,353,357,363,366,376,379,382,390,394,432,444,448,456,468,476,486,494,499,515,518,533],[12,13,14],"p",{},"Continuous Integration allows you to:",[16,17,18,22,30],"ul",{},[19,20,21],"li",{},"Deploy your app instantly, when new code is pushed into a repo",[19,23,24,25,29],{},"Build your app (in our case ",[26,27,28],"code",{},"npm run build",")",[19,31,32],{},"Trigger test scripts (and block deployment if a test fails)",[12,34,35],{},"It is definitely worth the effort if you update your app regularly.",[12,37,38],{},"GitLab is a service that started as an open-source GitHub competitor, mostly to host code in Git repositories, and evolved into an amazing tool that I won’t introduce here, as it isn’t related to Vue.js. One thing though, they were one of the first major companies to use Vue.js for their user interface.",[12,40,41],{},"Docker has to be mentioned as well. It is the most popular containerization service. It basically means you get to execute code in a secure environment, configured exactly like your dev/prod. Very useful when you need to make sure your code is executed with all its dependencies.",[12,43,44,45,50],{},"Each of these tools would require many posts to be covered. We’ll focus on setting up ",[46,47,49],"a",{"href":48},"/topics/ci-cd/","CI/CD"," for your Vue.js project. We’ll assume you have no knowledge in the matter.",[12,52,53,57],{},[46,54,56],{"href":55},"/pricing/#gitlab-com","GitLab CI/CD is free for personal projects",", I don’t know any other tool with such a beautiful UI that does that. If you do, please let me know.",[59,60,62],"h3",{"id":61},"the-gitlab-ciyml-file","The .gitlab-ci.yml file",[12,64,65,66,69,70,75,76,81],{},"Create a ",[26,67,68],{},".gitlab-ci.yml"," file at the root of your repo. GitLab will check for this file when new code is pushed. If the file is present, it will define a ",[46,71,74],{"href":72,"rel":73},"https://docs.gitlab.com/ci/pipelines/",[],"pipeline",", executed by a ",[46,77,80],{"href":78,"rel":79},"https://docs.gitlab.com/runner/",[],"GitLab Runner",". Click the links if you are curious, or keep reading to see a working example.",[12,83,84],{},"Default stages of a pipeline are:",[86,87,88,91,94],"ol",{},[19,89,90],{},"build",[19,92,93],{},"test",[19,95,96],{},"deploy",[12,98,99],{},"Again, you don’t need to master this, but this is the most common use case. You may not have set up unit tests, and if you haven’t, you may remove this step from the file, GitLab won’t mind.",[12,101,102],{},"Here is our file, you may copy/paste it in your repo:",[104,105,110],"pre",{"className":106,"code":107,"language":108,"meta":109,"style":109},"language-yaml shiki shiki-themes github-light","build site:\n  image: node:6\n  stage: build\n  script:\n    - npm install --progress=false\n    - npm run build\n  artifacts:\n    expire_in: 1 week\n    paths:\n      - dist\n\nunit test:\n  image: node:6\n  stage: test\n  script:\n    - npm install --progress=false\n    - npm run unit\n\ndeploy:\n  image: alpine\n  stage: deploy\n  script:\n    - apk add --no-cache rsync openssh\n    - mkdir -p ~/.ssh\n    - echo \"$SSH_PRIVATE_KEY\" >> ~/.ssh/id_dsa\n    - chmod 600 ~/.ssh/id_dsa\n    - echo -e \"Host *\\n\\tStrictHostKeyChecking no\\n\\n\" > ~/.ssh/config\n    - rsync -rav --delete dist/ user@server.com:/your/project/path/\n","yaml","",[26,111,112,125,138,149,157,166,174,182,193,201,210,217,225,234,244,251,258,266,271,278,288,298,305,313,321,329,337,345],{"__ignoreMap":109},[113,114,117,121],"span",{"class":115,"line":116},"line",1,[113,118,120],{"class":119},"shJU0","build site",[113,122,124],{"class":123},"sgsFI",":\n",[113,126,128,131,134],{"class":115,"line":127},2,[113,129,130],{"class":119},"  image",[113,132,133],{"class":123},": ",[113,135,137],{"class":136},"sYBdl","node:6\n",[113,139,141,144,146],{"class":115,"line":140},3,[113,142,143],{"class":119},"  stage",[113,145,133],{"class":123},[113,147,148],{"class":136},"build\n",[113,150,152,155],{"class":115,"line":151},4,[113,153,154],{"class":119},"  script",[113,156,124],{"class":123},[113,158,160,163],{"class":115,"line":159},5,[113,161,162],{"class":123},"    - ",[113,164,165],{"class":136},"npm install --progress=false\n",[113,167,169,171],{"class":115,"line":168},6,[113,170,162],{"class":123},[113,172,173],{"class":136},"npm run build\n",[113,175,177,180],{"class":115,"line":176},7,[113,178,179],{"class":119},"  artifacts",[113,181,124],{"class":123},[113,183,185,188,190],{"class":115,"line":184},8,[113,186,187],{"class":119},"    expire_in",[113,189,133],{"class":123},[113,191,192],{"class":136},"1 week\n",[113,194,196,199],{"class":115,"line":195},9,[113,197,198],{"class":119},"    paths",[113,200,124],{"class":123},[113,202,204,207],{"class":115,"line":203},10,[113,205,206],{"class":123},"      - ",[113,208,209],{"class":136},"dist\n",[113,211,213],{"class":115,"line":212},11,[113,214,216],{"emptyLinePlaceholder":215},true,"\n",[113,218,220,223],{"class":115,"line":219},12,[113,221,222],{"class":119},"unit test",[113,224,124],{"class":123},[113,226,228,230,232],{"class":115,"line":227},13,[113,229,130],{"class":119},[113,231,133],{"class":123},[113,233,137],{"class":136},[113,235,237,239,241],{"class":115,"line":236},14,[113,238,143],{"class":119},[113,240,133],{"class":123},[113,242,243],{"class":136},"test\n",[113,245,247,249],{"class":115,"line":246},15,[113,248,154],{"class":119},[113,250,124],{"class":123},[113,252,254,256],{"class":115,"line":253},16,[113,255,162],{"class":123},[113,257,165],{"class":136},[113,259,261,263],{"class":115,"line":260},17,[113,262,162],{"class":123},[113,264,265],{"class":136},"npm run unit\n",[113,267,269],{"class":115,"line":268},18,[113,270,216],{"emptyLinePlaceholder":215},[113,272,274,276],{"class":115,"line":273},19,[113,275,96],{"class":119},[113,277,124],{"class":123},[113,279,281,283,285],{"class":115,"line":280},20,[113,282,130],{"class":119},[113,284,133],{"class":123},[113,286,287],{"class":136},"alpine\n",[113,289,291,293,295],{"class":115,"line":290},21,[113,292,143],{"class":119},[113,294,133],{"class":123},[113,296,297],{"class":136},"deploy\n",[113,299,301,303],{"class":115,"line":300},22,[113,302,154],{"class":119},[113,304,124],{"class":123},[113,306,308,310],{"class":115,"line":307},23,[113,309,162],{"class":123},[113,311,312],{"class":136},"apk add --no-cache rsync openssh\n",[113,314,316,318],{"class":115,"line":315},24,[113,317,162],{"class":123},[113,319,320],{"class":136},"mkdir -p ~/.ssh\n",[113,322,324,326],{"class":115,"line":323},25,[113,325,162],{"class":123},[113,327,328],{"class":136},"echo \"$SSH_PRIVATE_KEY\" >> ~/.ssh/id_dsa\n",[113,330,332,334],{"class":115,"line":331},26,[113,333,162],{"class":123},[113,335,336],{"class":136},"chmod 600 ~/.ssh/id_dsa\n",[113,338,340,342],{"class":115,"line":339},27,[113,341,162],{"class":123},[113,343,344],{"class":136},"echo -e \"Host *\\n\\tStrictHostKeyChecking no\\n\\n\" > ~/.ssh/config\n",[113,346,348,350],{"class":115,"line":347},28,[113,349,162],{"class":123},[113,351,352],{"class":136},"rsync -rav --delete dist/ user@server.com:/your/project/path/\n",[59,354,356],{"id":355},"test-our-file","Test our file",[12,358,359,360,362],{},"Now commit and push the ",[26,361,68],{}," file to your GitLab repo.",[12,364,365],{},"Here is how it will look in the Pipelines tab of GitLab UI:",[12,367,368,373],{},[369,370],"img",{"alt":371,"src":372},"GitLab CI/CD Pipelines","https://res.cloudinary.com/about-gitlab-com/image/upload/v1782398348/blog/Content%20Images/gitlab-ci-pipelines.png",[374,375],"br",{},[12,377,378],{},"The green checkmark indicates that the step has succeeded and you can see the logs when clicking it.",[12,380,381],{},"In the second example, the tests have failed, click the red mark to read the logs and understand what went wrong.",[12,383,384,388],{},[369,385],{"alt":386,"src":387},"GitLab CI/CD logs","https://res.cloudinary.com/about-gitlab-com/image/upload/v1782398345/blog/Content%20Images/gitlab-ci-failed.png",[374,389],{},[59,391,393],{"id":392},"file-anatomy","File anatomy",[16,395,396,402,417,423],{},[19,397,398,401],{},[26,399,400],{},"image"," is the link to the Docker image. I have chosen to use public official images, but you may use one from the Docker Hub or a private registry.",[19,403,404,407,408,410,411,413,414,416],{},[26,405,406],{},"stage"," should be ",[26,409,90],{},", ",[26,412,93],{}," or ",[26,415,96],{}," if you use defaults. But that can be customized.",[19,418,419,422],{},[26,420,421],{},"script"," are command lines executed inside our build environment.",[19,424,425,428,429,431],{},[26,426,427],{},"artifacts"," describes a path to the build result. The files in this path can be used in the next build steps (in ",[26,430,96],{}," in our example). You can download artifacts from Gitlab UI.",[12,433,434,435,437,438,443],{},"More about the ",[26,436,68],{}," file options ",[46,439,442],{"href":440,"rel":441},"https://docs.gitlab.com/ci/yaml/",[],"in the docs",".",[59,445,447],{"id":446},"about-the-deployment-script","About the deployment script",[12,449,450,451,455],{},"I have described my use case here, but it may not be the simplest. Relevant examples for ",[46,452,454],{"href":453},"/blog/ci-deployment-and-environments/","deployment to Amazon S3"," or other services can be found online.",[12,457,458,459,463,464,467],{},"To get it working, you’ll need to ",[460,461,462],"strong",{},"provide GitLab with a private SSH key",". If you are no security expert, then it is time to take advice from one. The bottom line is ",[460,465,466],{},"do not give it your private SSH key",", create one that is used only by GitLab.",[104,469,474],{"className":470,"code":472,"language":473,"meta":109},[471],"language-text","# create gitlab user\nadduser gitlab\n\n# generate a DSA SSH key\nsu -l gitlab\nssh-keygen -t dsa\n\n# authorize the key to log in using the public key and output the private one\ncd .ssh\nmv id_dsa.pub authorized_keys\ncat id_dsa && rm id_dsa\n","text",[26,475,472],{"__ignoreMap":109},[12,477,478,479,482,483,443],{},"Then go to GitLab UI “Settings” (the gear icon), then “Variables” and copy/paste the content of your terminal in “Value”. The “Key” should be ",[26,480,481],{},"SSH_PRIVATE_KEY",". This private key will be used to do the ",[26,484,485],{},"rsync",[12,487,488,492],{},[369,489],{"alt":490,"src":491},"GitLab CI/CD variables","https://res.cloudinary.com/about-gitlab-com/image/upload/v1782398349/blog/Content%20Images/gitlab-ci-variables.png",[374,493],{},[495,496,498],"h2",{"id":497},"links","Links",[16,500,501,508],{},[19,502,503],{},[46,504,507],{"href":505,"rel":506},"https://gitlab.com/kartsims/vue-ci",[],"Sample GitLab repository",[19,509,510],{},[46,511,514],{"href":512,"rel":513},"https://docs.gitlab.com/ci/",[],"Gitlab CI/CD docs",[12,516,517],{},"If you need more information, leave a comment I’ll be happy to help you if I can.",[12,519,520,521,526,527,532],{},"\"",[46,522,525],{"href":523,"rel":524},"https://unsplash.com/@tigesphotos?photo=-BiEu8VP9-M",[],"Golden Gate Bridge Vista Point","\" by ",[46,528,531],{"href":529,"rel":530},"https://unsplash.com/@tigesphotos",[],"Tiger Robinson"," on Unsplash",[534,535,536],"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":109,"searchDepth":127,"depth":127,"links":538},[539,540,541,542,543],{"id":61,"depth":140,"text":62},{"id":355,"depth":140,"text":356},{"id":392,"depth":140,"text":393},{"id":446,"depth":140,"text":447},{"id":497,"depth":127,"text":498},"engineering","2017-09-12","Learn how to get the most out of GitLab CI/CD with this guide.","md",null,false,"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749680363/Blog/Hero%20Images/build-test-deploy-vue.jpg",{},"/en-us/blog/vuejs-app-gitlab",{"title":5,"description":546,"ogTitle":5,"ogDescription":546,"noIndex":549,"ogImage":550,"ogUrl":554,"ogSiteName":555,"ogType":556,"canonicalUrls":554},"https://about.gitlab.com/blog/vuejs-app-gitlab","https://about.gitlab.com","article","vuejs-app-gitlab","en-us/blog/vuejs-app-gitlab",[49,560],"user stories","BlogPost","l1ttBrdDTS9AkSJBMXCjOAYBM6gzQvQixKf60NewNQE",{"logo":564,"freeTrial":569,"sales":574,"login":579,"items":584,"search":910,"minimal":941,"duo":960,"switchNav":969,"pricingDeployment":980},{"config":565},{"href":566,"dataGaName":567,"dataGaLocation":568},"/","gitlab logo","header",{"text":570,"config":571},"Get free trial",{"href":572,"dataGaName":573,"dataGaLocation":568},"https://gitlab.com/-/trial_registrations/new?glm_source=about.gitlab.com&glm_content=default-saas-trial/","free trial",{"text":575,"config":576},"Request a demo",{"href":577,"dataGaName":578,"dataGaLocation":568},"/sales/?contact-topic=request-demo","sales",{"text":580,"config":581},"Sign in",{"href":582,"dataGaName":583,"dataGaLocation":568},"https://gitlab.com/users/sign_in/","sign in",[585,614,713,718,832,888],{"text":586,"config":587,"menu":589},"Platform",{"dataNavLevelOne":588},"platform",{"type":590,"columns":591},"cards",[592,598,606],{"title":586,"description":593,"link":594},"The intelligent orchestration platform for DevSecOps",{"text":595,"config":596},"Explore our Platform",{"href":597,"dataGaName":588,"dataGaLocation":568},"/platform/",{"title":599,"description":600,"link":601},"GitLab Duo Agent Platform","Agentic AI for the entire software lifecycle",{"text":602,"config":603},"Meet GitLab Duo",{"href":604,"dataGaName":605,"dataGaLocation":568},"/gitlab-duo-agent-platform/","gitlab duo agent platform",{"title":607,"description":608,"link":609},"Why GitLab","See the top reasons enterprises choose GitLab",{"text":610,"config":611},"Learn more",{"href":612,"dataGaName":613,"dataGaLocation":568},"/why-gitlab/","why gitlab",{"text":615,"left":215,"config":616,"menu":618},"Product",{"dataNavLevelOne":617},"solutions",{"type":619,"link":620,"columns":624,"feature":692},"lists",{"text":621,"config":622},"View all Solutions",{"href":623,"dataGaName":617,"dataGaLocation":568},"/solutions/",[625,648,671],{"title":626,"description":627,"link":628,"items":633},"Automation","CI/CD and automation to accelerate deployment",{"config":629},{"icon":630,"href":631,"dataGaName":632,"dataGaLocation":568},"AutomatedCodeAlt","/solutions/delivery-automation/","automated software delivery",[634,637,640,644],{"text":49,"config":635},{"href":636,"dataGaLocation":568,"dataGaName":49},"/solutions/continuous-integration/",{"text":599,"config":638},{"href":604,"dataGaLocation":568,"dataGaName":639},"gitlab duo agent platform - product menu",{"text":641,"config":642},"Source Code Management",{"href":643,"dataGaLocation":568,"dataGaName":641},"/solutions/source-code-management/",{"text":645,"config":646},"Automated Software Delivery",{"href":631,"dataGaLocation":568,"dataGaName":647},"Automated software delivery",{"title":649,"description":650,"link":651,"items":656},"Security","Deliver code faster without compromising security",{"config":652},{"href":653,"dataGaName":654,"dataGaLocation":568,"icon":655},"/solutions/application-security-testing/","security and compliance","ShieldCheckLight",[657,661,666],{"text":658,"config":659},"Application Security Testing",{"href":653,"dataGaName":660,"dataGaLocation":568},"Application security testing",{"text":662,"config":663},"Software Supply Chain Security",{"href":664,"dataGaLocation":568,"dataGaName":665},"/solutions/supply-chain/","Software supply chain security",{"text":667,"config":668},"Software Compliance",{"href":669,"dataGaName":670,"dataGaLocation":568},"/solutions/software-compliance/","software compliance",{"title":672,"link":673,"items":678},"Measurement",{"config":674},{"icon":675,"href":676,"dataGaName":677,"dataGaLocation":568},"DigitalTransformation","/solutions/visibility-measurement/","visibility and measurement",[679,683,687],{"text":680,"config":681},"Visibility & Measurement",{"href":676,"dataGaLocation":568,"dataGaName":682},"Visibility and Measurement",{"text":684,"config":685},"Value Stream Management",{"href":686,"dataGaLocation":568,"dataGaName":684},"/solutions/value-stream-management/",{"text":688,"config":689},"Analytics & Insights",{"href":690,"dataGaLocation":568,"dataGaName":691},"/solutions/analytics-and-insights/","Analytics and insights",{"title":693,"type":619,"items":694},"GitLab for",[695,701,707],{"text":696,"config":697},"Enterprise",{"icon":698,"href":699,"dataGaLocation":568,"dataGaName":700},"Building","/enterprise/","enterprise",{"text":702,"config":703},"Small Business",{"icon":704,"href":705,"dataGaLocation":568,"dataGaName":706},"Work","/small-business/","small business",{"text":708,"config":709},"Public Sector",{"icon":710,"href":711,"dataGaLocation":568,"dataGaName":712},"Organization","/solutions/public-sector/","public sector",{"text":714,"config":715},"Pricing",{"href":716,"dataGaName":717,"dataGaLocation":568,"dataNavLevelOne":717},"/pricing/","pricing",{"text":719,"config":720,"menu":722},"Resources",{"dataNavLevelOne":721},"resources",{"type":619,"link":723,"columns":727,"feature":821},{"text":724,"config":725},"View all resources",{"href":726,"dataGaName":721,"dataGaLocation":568},"/resources/",[728,761,788],{"title":729,"items":730},"Getting started",[731,736,741,746,751,756],{"text":732,"config":733},"Install",{"href":734,"dataGaName":735,"dataGaLocation":568},"/install/","install",{"text":737,"config":738},"Quick start guides",{"href":739,"dataGaName":740,"dataGaLocation":568},"/get-started/","quick setup checklists",{"text":742,"config":743},"Learn",{"href":744,"dataGaLocation":568,"dataGaName":745},"https://university.gitlab.com/","learn",{"text":747,"config":748},"Product documentation",{"href":749,"dataGaName":750,"dataGaLocation":568},"https://docs.gitlab.com/","product documentation",{"text":752,"config":753},"Best practice videos",{"href":754,"dataGaName":755,"dataGaLocation":568},"/getting-started-videos/","best practice videos",{"text":757,"config":758},"Integrations",{"href":759,"dataGaName":760,"dataGaLocation":568},"/integrations/","integrations",{"title":762,"items":763},"Discover",[764,769,774,779,783],{"text":765,"config":766},"Customer success stories",{"href":767,"dataGaName":768,"dataGaLocation":568},"/customers/","customer success stories",{"text":770,"config":771},"Blog",{"href":772,"dataGaName":773,"dataGaLocation":568},"/blog/","blog",{"text":775,"config":776},"Demo Hub",{"href":777,"dataGaName":778,"dataGaLocation":568},"/demo-hub/","demo hub",{"text":780,"config":781},"The Source",{"href":782,"dataGaName":773,"dataGaLocation":568},"/the-source/",{"text":784,"config":785},"Remote",{"href":786,"dataGaName":787,"dataGaLocation":568},"https://handbook.gitlab.com/handbook/company/culture/all-remote/","remote",{"title":789,"items":790},"Connect",[791,796,801,806,811,816],{"text":792,"config":793},"GitLab Services",{"href":794,"dataGaName":795,"dataGaLocation":568},"/services/","services",{"text":797,"config":798},"Contribute",{"href":799,"dataGaName":800,"dataGaLocation":568},"https://contributors.gitlab.com","contribute",{"text":802,"config":803},"Community",{"href":804,"dataGaName":805,"dataGaLocation":568},"/community/","community",{"text":807,"config":808},"Forum",{"href":809,"dataGaName":810,"dataGaLocation":568},"https://forum.gitlab.com/","forum",{"text":812,"config":813},"Events",{"href":814,"dataGaName":815,"dataGaLocation":568},"/events/","events",{"text":817,"config":818},"Partners",{"href":819,"dataGaName":820,"dataGaLocation":568},"/partners/","partners",{"config":822,"title":825,"text":826,"link":827},{"background":823,"textColor":824},"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":828,"config":829},"Read the latest",{"href":830,"dataGaName":831,"dataGaLocation":568},"/whats-new/","whats new",{"text":833,"config":834,"menu":836},"Company",{"dataNavLevelOne":835},"company",{"type":619,"columns":837},[838],{"items":839},[840,845,851,853,858,863,868,873,878,883],{"text":841,"config":842},"About",{"href":843,"dataGaName":844,"dataGaLocation":568},"/company/","about",{"text":846,"config":847,"footerGa":850},"Jobs",{"href":848,"dataGaName":849,"dataGaLocation":568},"/jobs/","jobs",{"dataGaName":849},{"text":812,"config":852},{"href":814,"dataGaName":815,"dataGaLocation":568},{"text":854,"config":855},"Leadership",{"href":856,"dataGaName":857,"dataGaLocation":568},"/company/team/e-group/","leadership",{"text":859,"config":860},"Handbook",{"href":861,"dataGaName":862,"dataGaLocation":568},"https://handbook.gitlab.com/","handbook",{"text":864,"config":865},"Investor relations",{"href":866,"dataGaName":867,"dataGaLocation":568},"https://ir.gitlab.com/overview/default.aspx","investor relations",{"text":869,"config":870},"Trust Center",{"href":871,"dataGaName":872,"dataGaLocation":568},"/security/","trust center",{"text":874,"config":875},"AI Transparency Center",{"href":876,"dataGaName":877,"dataGaLocation":568},"/ai-transparency-center/","ai transparency center",{"text":879,"config":880},"Newsletter",{"href":881,"dataGaName":882,"dataGaLocation":568},"/company/contact/#contact-forms","newsletter",{"text":884,"config":885},"Press",{"href":886,"dataGaName":887,"dataGaLocation":568},"/press/","press",{"text":889,"config":890,"menu":891},"Contact us",{"dataNavLevelOne":835},{"type":619,"columns":892},[893],{"items":894},[895,900,905],{"text":896,"config":897},"Talk to sales",{"href":898,"dataGaName":899,"dataGaLocation":568},"/sales/","talk to sales",{"text":901,"config":902},"Support portal",{"href":903,"dataGaName":904,"dataGaLocation":568},"https://support.gitlab.com/hc/en-us","support portal",{"text":906,"config":907},"Customer portal",{"href":908,"dataGaName":909,"dataGaLocation":568},"https://customers.gitlab.com/customers/sign_in/","customer portal",{"close":911,"login":912,"suggestions":919},"Close",{"text":913,"link":914},"To search repositories and projects, login to",{"text":915,"config":916},"gitlab.com",{"href":582,"dataGaName":917,"dataGaLocation":918},"search login","search",{"text":920,"default":921},"Suggestions",[922,924,928,930,934,938],{"text":599,"config":923},{"href":604,"dataGaName":599,"dataGaLocation":918},{"text":925,"config":926},"Code Suggestions (AI)",{"href":927,"dataGaName":925,"dataGaLocation":918},"/solutions/code-suggestions/",{"text":49,"config":929},{"href":636,"dataGaName":49,"dataGaLocation":918},{"text":931,"config":932},"GitLab on AWS",{"href":933,"dataGaName":931,"dataGaLocation":918},"/partners/technology-partners/aws/",{"text":935,"config":936},"GitLab on Google Cloud",{"href":937,"dataGaName":935,"dataGaLocation":918},"/partners/technology-partners/google-cloud-platform/",{"text":939,"config":940},"Why GitLab?",{"href":612,"dataGaName":939,"dataGaLocation":918},{"freeTrial":942,"mobileIcon":947,"desktopIcon":952,"secondaryButton":955},{"text":943,"config":944},"Start free trial",{"href":945,"dataGaName":573,"dataGaLocation":946},"https://gitlab.com/-/trials/new/","nav",{"altText":948,"config":949},"Gitlab Icon",{"src":950,"dataGaName":951,"dataGaLocation":946},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1758203874/jypbw1jx72aexsoohd7x.svg","gitlab icon",{"altText":948,"config":953},{"src":954,"dataGaName":951,"dataGaLocation":946},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1758203875/gs4c8p8opsgvflgkswz9.svg",{"text":956,"config":957},"Get Started",{"href":958,"dataGaName":959,"dataGaLocation":946},"https://gitlab.com/-/trial_registrations/new?glm_source=about.gitlab.com/get-started/","get started",{"freeTrial":961,"mobileIcon":965,"desktopIcon":967},{"text":962,"config":963},"Learn more about GitLab Duo",{"href":604,"dataGaName":964,"dataGaLocation":946},"gitlab duo",{"altText":948,"config":966},{"src":950,"dataGaName":951,"dataGaLocation":946},{"altText":948,"config":968},{"src":954,"dataGaName":951,"dataGaLocation":946},{"button":970,"mobileIcon":975,"desktopIcon":977},{"text":971,"config":972},"/switch",{"href":973,"dataGaName":974,"dataGaLocation":946},"#contact","switch",{"altText":948,"config":976},{"src":950,"dataGaName":951,"dataGaLocation":946},{"altText":948,"config":978},{"src":979,"dataGaName":951,"dataGaLocation":946},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1773335277/ohhpiuoxoldryzrnhfrh.png",{"freeTrial":981,"mobileIcon":986,"desktopIcon":988},{"text":982,"config":983},"Back to pricing",{"href":716,"dataGaName":984,"dataGaLocation":946,"icon":985},"back to pricing","GoBack",{"altText":948,"config":987},{"src":950,"dataGaName":951,"dataGaLocation":946},{"altText":948,"config":989},{"src":954,"dataGaName":951,"dataGaLocation":946},{"title":991,"titleMobile":992,"button":993,"config":998},"Duo Agent Platform delivers 400% ROI, per new Forrester Consulting study.","400% ROI: Forrester TEI for GitLab Duo",{"text":610,"config":994},{"href":995,"dataGaName":996,"dataGaLocation":997},"https://about.gitlab.com/blog/gitlab-duo-agent-platform-delivers-400-percent-roi/","forrester-tei-dap-banner","global-banner",{"layout":999,"disabled":549},"release",{"data":1001},{"text":1002,"source":1003,"edit":1009,"contribute":1014,"config":1019,"items":1024,"minimal":1233},"Git is a trademark of Software Freedom Conservancy and our use of 'GitLab' is under license",{"text":1004,"config":1005},"View page source",{"href":1006,"dataGaName":1007,"dataGaLocation":1008},"https://gitlab.com/gitlab-com/marketing/digital-experience/about-gitlab-com/","page source","footer",{"text":1010,"config":1011},"Edit this page",{"href":1012,"dataGaName":1013,"dataGaLocation":1008},"https://gitlab.com/gitlab-com/marketing/digital-experience/about-gitlab-com/-/blob/main/content/","web ide",{"text":1015,"config":1016},"Please contribute",{"href":1017,"dataGaName":1018,"dataGaLocation":1008},"https://gitlab.com/gitlab-com/marketing/digital-experience/about-gitlab-com/-/blob/main/CONTRIBUTING.md/","please contribute",{"twitter":1020,"facebook":1021,"youtube":1022,"linkedin":1023},"https://twitter.com/gitlab","https://www.facebook.com/gitlab","https://www.youtube.com/channel/UCnMGQ8QHMAnVIsI3xJrihhg","https://www.linkedin.com/company/gitlab-com",[1025,1072,1125,1169,1201],{"title":714,"links":1026,"subMenu":1041},[1027,1031,1036],{"text":1028,"config":1029},"View plans",{"href":716,"dataGaName":1030,"dataGaLocation":1008},"view plans",{"text":1032,"config":1033},"Why Premium?",{"href":1034,"dataGaName":1035,"dataGaLocation":1008},"/pricing/premium/","why premium",{"text":1037,"config":1038},"Why Ultimate?",{"href":1039,"dataGaName":1040,"dataGaLocation":1008},"/pricing/ultimate/","why ultimate",[1042],{"title":1043,"links":1044},"Contact Us",[1045,1048,1050,1052,1057,1062,1067],{"text":1046,"config":1047},"Contact sales",{"href":898,"dataGaName":578,"dataGaLocation":1008},{"text":901,"config":1049},{"href":903,"dataGaName":904,"dataGaLocation":1008},{"text":906,"config":1051},{"href":908,"dataGaName":909,"dataGaLocation":1008},{"text":1053,"config":1054},"Status",{"href":1055,"dataGaName":1056,"dataGaLocation":1008},"https://status.gitlab.com/","status",{"text":1058,"config":1059},"Terms of use",{"href":1060,"dataGaName":1061,"dataGaLocation":1008},"/terms/","terms of use",{"text":1063,"config":1064},"Privacy statement",{"href":1065,"dataGaName":1066,"dataGaLocation":1008},"/privacy/","privacy statement",{"text":1068,"config":1069},"Cookie preferences",{"dataGaName":1070,"dataGaLocation":1008,"id":1071,"isOneTrustButton":215},"cookie preferences","ot-sdk-btn",{"title":615,"links":1073,"subMenu":1082},[1074,1078],{"text":1075,"config":1076},"DevSecOps platform",{"href":597,"dataGaName":1077,"dataGaLocation":1008},"devsecops platform",{"text":1079,"config":1080},"AI-Assisted Development",{"href":604,"dataGaName":1081,"dataGaLocation":1008},"ai-assisted development",[1083],{"title":1084,"links":1085},"Topics",[1086,1090,1095,1100,1105,1110,1115,1120],{"text":1087,"config":1088},"CICD",{"href":48,"dataGaName":1089,"dataGaLocation":1008},"cicd",{"text":1091,"config":1092},"GitOps",{"href":1093,"dataGaName":1094,"dataGaLocation":1008},"/topics/gitops/","gitops",{"text":1096,"config":1097},"DevOps",{"href":1098,"dataGaName":1099,"dataGaLocation":1008},"/topics/devops/","devops",{"text":1101,"config":1102},"Version Control",{"href":1103,"dataGaName":1104,"dataGaLocation":1008},"/topics/version-control/","version control",{"text":1106,"config":1107},"DevSecOps",{"href":1108,"dataGaName":1109,"dataGaLocation":1008},"/topics/devsecops/","devsecops",{"text":1111,"config":1112},"Cloud Native",{"href":1113,"dataGaName":1114,"dataGaLocation":1008},"/topics/cloud-native/","cloud native",{"text":1116,"config":1117},"AI for Coding",{"href":1118,"dataGaName":1119,"dataGaLocation":1008},"/topics/devops/ai-for-coding/","ai for coding",{"text":1121,"config":1122},"Agentic AI",{"href":1123,"dataGaName":1124,"dataGaLocation":1008},"/topics/agentic-ai/","agentic ai",{"title":1126,"links":1127},"Solutions",[1128,1130,1132,1137,1141,1144,1148,1151,1153,1156,1159,1164],{"text":658,"config":1129},{"href":653,"dataGaName":658,"dataGaLocation":1008},{"text":647,"config":1131},{"href":631,"dataGaName":632,"dataGaLocation":1008},{"text":1133,"config":1134},"Agile development",{"href":1135,"dataGaName":1136,"dataGaLocation":1008},"/solutions/agile-delivery/","agile delivery",{"text":1138,"config":1139},"SCM",{"href":643,"dataGaName":1140,"dataGaLocation":1008},"source code management",{"text":1087,"config":1142},{"href":636,"dataGaName":1143,"dataGaLocation":1008},"continuous integration & delivery",{"text":1145,"config":1146},"Value stream management",{"href":686,"dataGaName":1147,"dataGaLocation":1008},"value stream management",{"text":1091,"config":1149},{"href":1150,"dataGaName":1094,"dataGaLocation":1008},"/solutions/gitops/",{"text":696,"config":1152},{"href":699,"dataGaName":700,"dataGaLocation":1008},{"text":1154,"config":1155},"Small business",{"href":705,"dataGaName":706,"dataGaLocation":1008},{"text":1157,"config":1158},"Public sector",{"href":711,"dataGaName":712,"dataGaLocation":1008},{"text":1160,"config":1161},"Education",{"href":1162,"dataGaName":1163,"dataGaLocation":1008},"/solutions/education/","education",{"text":1165,"config":1166},"Financial services",{"href":1167,"dataGaName":1168,"dataGaLocation":1008},"/solutions/finance/","financial services",{"title":719,"links":1170},[1171,1173,1175,1177,1180,1182,1185,1187,1189,1191,1193,1195,1197,1199],{"text":732,"config":1172},{"href":734,"dataGaName":735,"dataGaLocation":1008},{"text":737,"config":1174},{"href":739,"dataGaName":740,"dataGaLocation":1008},{"text":742,"config":1176},{"href":744,"dataGaName":745,"dataGaLocation":1008},{"text":747,"config":1178},{"href":749,"dataGaName":1179,"dataGaLocation":1008},"docs",{"text":770,"config":1181},{"href":772,"dataGaName":773,"dataGaLocation":1008},{"text":1183,"config":1184},"What's new",{"href":830,"dataGaName":831,"dataGaLocation":1008},{"text":765,"config":1186},{"href":767,"dataGaName":768,"dataGaLocation":1008},{"text":784,"config":1188},{"href":786,"dataGaName":787,"dataGaLocation":1008},{"text":792,"config":1190},{"href":794,"dataGaName":795,"dataGaLocation":1008},{"text":797,"config":1192},{"href":799,"dataGaName":800,"dataGaLocation":1008},{"text":802,"config":1194},{"href":804,"dataGaName":805,"dataGaLocation":1008},{"text":807,"config":1196},{"href":809,"dataGaName":810,"dataGaLocation":1008},{"text":812,"config":1198},{"href":814,"dataGaName":815,"dataGaLocation":1008},{"text":817,"config":1200},{"href":819,"dataGaName":820,"dataGaLocation":1008},{"title":833,"links":1202},[1203,1205,1207,1209,1211,1213,1217,1222,1224,1226,1228],{"text":841,"config":1204},{"href":843,"dataGaName":835,"dataGaLocation":1008},{"text":846,"config":1206},{"href":848,"dataGaName":849,"dataGaLocation":1008},{"text":854,"config":1208},{"href":856,"dataGaName":857,"dataGaLocation":1008},{"text":859,"config":1210},{"href":861,"dataGaName":862,"dataGaLocation":1008},{"text":864,"config":1212},{"href":866,"dataGaName":867,"dataGaLocation":1008},{"text":1214,"config":1215},"Sustainability",{"href":1216,"dataGaName":1214,"dataGaLocation":1008},"/sustainability/",{"text":1218,"config":1219},"Diversity, inclusion and belonging (DIB)",{"href":1220,"dataGaName":1221,"dataGaLocation":1008},"/diversity-inclusion-belonging/","Diversity, inclusion and belonging",{"text":869,"config":1223},{"href":871,"dataGaName":872,"dataGaLocation":1008},{"text":879,"config":1225},{"href":881,"dataGaName":882,"dataGaLocation":1008},{"text":884,"config":1227},{"href":886,"dataGaName":887,"dataGaLocation":1008},{"text":1229,"config":1230},"Modern Slavery Transparency Statement",{"href":1231,"dataGaName":1232,"dataGaLocation":1008},"https://handbook.gitlab.com/handbook/legal/modern-slavery-act-transparency-statement/","modern slavery transparency statement",{"items":1234},[1235,1238,1241],{"text":1236,"config":1237},"Terms",{"href":1060,"dataGaName":1061,"dataGaLocation":1008},{"text":1239,"config":1240},"Cookies",{"dataGaName":1070,"dataGaLocation":1008,"id":1071,"isOneTrustButton":215},{"text":1242,"config":1243},"Privacy",{"href":1065,"dataGaName":1066,"dataGaLocation":1008},[1245],{"id":1246,"title":7,"body":548,"config":1247,"content":1249,"description":548,"extension":1252,"meta":1253,"navigation":215,"path":1254,"seo":1255,"stem":1256,"__hash__":1257},"blogAuthors/en-us/blog/authors/simon-tarchichi.yml",{"template":1248},"BlogAuthor",{"name":7,"config":1250},{"headshot":109,"ctfId":1251},"kartsims","yml",{},"/en-us/blog/authors/simon-tarchichi",{},"en-us/blog/authors/simon-tarchichi","q7-CZ-PWultG7mp_f9xz7jwW26VcX-Tk8BjDqG7Ptgw",[1259,1268,1276],{"title":1260,"description":1261,"heroImage":1262,"category":544,"date":1263,"authors":1264,"slug":1267,"externalUrl":548},"Confidential AI for GitLab Self-Hosted","Give developers AI coding agents in GitLab Duo without source code leaving a hardware-encrypted boundary — no GPUs needed.","https://res.cloudinary.com/about-gitlab-com/image/upload/v1773866173/vte9qh8rriznvyclhkes.png","2026-08-06",[1265,1266],"Mathias Ewald","Martin Paloncy, Edgeless Systems","confidential-ai-for-gitlab-self-hosted",{"title":1269,"description":1270,"heroImage":1271,"category":544,"date":1272,"authors":1273,"slug":1275,"externalUrl":548},"Green DevOps: Why carbon measurement belongs in your CI/CD pipeline","CI/CD pipelines have a hidden carbon cost. Here's why measuring it matters, and how you can get started with Eco CI and Carmen in GitLab.","https://res.cloudinary.com/about-gitlab-com/image/upload/v1765809212/noh0mdfn9o94ry9ykura.png","2026-07-09",[1274],"Lysanne Pinto","green-devops-carbon-measurement-cicd-pipeline",{"title":1277,"description":1278,"heroImage":1279,"category":544,"date":1280,"authors":1281,"slug":1283,"externalUrl":548},"How to build CI/CD observability at scale","This practical guide to GitLab pipeline analytics helps self-managed users gain operational insights using Prometheus and Grafana.","https://res.cloudinary.com/about-gitlab-com/image/upload/v1774465167/n5hlvrsrheadeccyr1oz.png","2026-04-28",[1282],"Paul Meresanu","how-to-build-ci-cd-observability-at-scale",{"promotions":1285},[1286,1300,1312,1324],{"id":1287,"categories":1288,"header":1290,"text":1291,"button":1292,"image":1297},"ai-modernization",[1289],"ai","Is AI achieving its promise at scale?","Quiz will take 5 minutes or less",{"text":1293,"config":1294},"Get your AI maturity score",{"href":1295,"dataGaName":1296,"dataGaLocation":773},"/assessments/ai-modernization-assessment/","modernization assessment",{"config":1298},{"src":1299},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1772138786/qix0m7kwnd8x2fh1zq49.png",{"id":1301,"categories":1302,"header":1304,"text":1291,"button":1305,"image":1309},"devops-modernization",[1303,1109],"product","Are you just managing tools or shipping innovation?",{"text":1306,"config":1307},"Get your DevOps maturity score",{"href":1308,"dataGaName":1296,"dataGaLocation":773},"/assessments/devops-modernization-assessment/",{"config":1310},{"src":1311},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1772138785/eg818fmakweyuznttgid.png",{"id":1313,"categories":1314,"header":1316,"text":1291,"button":1317,"image":1321},"security-modernization",[1315],"security","Are you trading speed for security?",{"text":1318,"config":1319},"Get your security maturity score",{"href":1320,"dataGaName":1296,"dataGaLocation":773},"/assessments/security-modernization-assessment/",{"config":1322},{"src":1323},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1772138786/p4pbqd9nnjejg5ds6mdk.png",{"id":1325,"paths":1326,"header":1329,"text":1330,"button":1331,"image":1336},"github-azure-migration",[1327,1328],"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":1332,"config":1333},"See how GitLab compares to GitHub",{"href":1334,"dataGaName":1335,"dataGaLocation":773},"/compare/gitlab-vs-github/github-azure-migration/","github azure migration",{"config":1337},{"src":1311},{"header":1339,"blurb":1340,"button":1341,"secondaryButton":1346},"Start building faster today","See what your team can do with the intelligent orchestration platform for DevSecOps.\n",{"text":1342,"config":1343},"Get your free trial",{"href":1344,"dataGaName":573,"dataGaLocation":1345},"https://gitlab.com/-/trial_registrations/new?glm_content=default-saas-trial&glm_source=about.gitlab.com/","feature",{"text":1046,"config":1347},{"href":898,"dataGaName":578,"dataGaLocation":1345},1786803754246]