onedev

所属分类:Docker
开发工具:Java
文件大小:31691KB
下载次数:0
上传日期:2023-06-13 03:03:23
上 传 者sh-1993
说明:  具有CI CD和看板的自托管Git服务器
(Self-hosted Git Server with CI CD and Kanban)

文件列表:
.editorconfig (436, 2023-09-25)
.onedev-buildspec.yml (7803, 2023-09-25)
doc (0, 2023-09-25)
doc\images (0, 2023-09-25)
doc\images\annotation.png (233219, 2023-09-25)
doc\images\boards.png (310627, 2023-09-25)
doc\images\build-option.gif (350782, 2023-09-25)
doc\images\changes.gif (592868, 2023-09-25)
doc\images\command-palette.gif (1396455, 2023-09-25)
doc\images\custom-field.png (142535, 2023-09-25)
doc\images\dashboard.png (931937, 2023-09-25)
doc\images\file-comment.gif (323576, 2023-09-25)
doc\images\fixing-build.png (158575, 2023-09-25)
doc\images\job-command.gif (128193, 2023-09-25)
doc\images\markdown.gif (1954517, 2023-09-25)
doc\images\pipeline.gif (116728, 2023-09-25)
doc\images\query.gif (592935, 2023-09-25)
doc\images\regex-search.gif (642578, 2023-09-25)
doc\images\replication.png (684673, 2023-09-25)
doc\images\review-policy.gif (350459, 2023-09-25)
doc\images\search-symbol.gif (476358, 2023-09-25)
doc\images\service-desk.png (300383, 2023-09-25)
doc\images\stats.png (194699, 2023-09-25)
doc\images\symbol.gif (278521, 2023-09-25)
doc\images\threaded-comments.png (299791, 2023-09-25)
doc\images\web-terminal.gif (325747, 2023-09-25)
doc\images\xcode-search.png (470333, 2023-09-25)
doc\missing-issue-fixes.md (520, 2023-09-25)
license.txt (1889, 2023-09-25)
pom.xml (19151, 2023-09-25)
server-core (0, 2023-09-25)
server-core\pom.xml (9856, 2023-09-25)
server-core\src (0, 2023-09-25)
server-core\src\main (0, 2023-09-25)
server-core\src\main\java (0, 2023-09-25)
server-core\src\main\java\io (0, 2023-09-25)
server-core\src\main\java\io\onedev (0, 2023-09-25)
... ...

> **Note** > 1. OneDev introduced enterprise edition since 9.0, and is now using a [new license](https://github.com/theonedev/onedev/blob/main/license.txt) > 1. Do not worry about security advisories above. They are fixed as soon as discovered and published to notify users > 1. We develop OneDev at code.onedev.io for sake of dogfooding. All issues and pull requests should be submitted there

Self-hosted Git Server with Kanban and CI/CD

Quickstart | Installation Guide | All Documentation

## Out-of-box Symbol Search and Navigation Just push code and you will be able to perform symbol search and navigation in arbitrary commit without any extra setup. You can also jump to symbol definition in diff while reviewing commits or pull requests. It works by analyzing source code with ANTLR, extracting symbols for storage incrementally, fast and space efficient. Supports Java, JavaScript, C, C++, CSharp, Go, PHP, Python, CSS, SCSS, LESS and R. ![searchsymbol](doc/images/search-symbol.gif) ![jumpsymbol](doc/images/symbol.gif) ## Code Search with Regular Expression You may switch to any commit, and search code with regular expression. OneDev under the hood indexes the code with Lucene incrementally. At search time, literal tri-grams in the regular expression are extracted for a coarse search, followed by exact match in the result. This makes the regex search blazing fast, even for large repositories like Linux. ![regex](doc/images/regex-search.gif) ## Annotate Source/Diff with Static Analysis Result to Facilitate Code Review Of course this can be done by many third party applications at GitHub, however they display the result on their own applications, and this makes review activities such as adding comment over analysis result difficult. Not to mention that you need to pay for these services. ![annotation](doc/images/annotation.png) ## Customizable Issue State and Field, with Deep CI/CD Integration The simple open/close state of GitHub/GitLab issues does not work well for many workflows. Considering issues submitted by customers: 1. If developer closes issue upon committing the code, customer will be notified and may ask for the release fixing the issue. 2. If developer closes the issue at release time, QA might be confused at what issues to test as they all remain open at test time. With customizable issue states, we may address the issue with four states: open, committed, test ready and released: 1. When code is committed, issue transits to committed state automatically 2. When a test build is created and deployed, the issue transits to test ready state automatically. QA will be notified and can check issue detail to know which environment the test build is deployed into. 3. When test passes, and a release build is created, customers submitting the issue will be notified and they can check issue detail to see which release contains the fix. ![boards](doc/images/boards.png) ![fixing-build](doc/images/fixing-build.png) ## Service Desk to Create/Discuss Issues via Email Service desk allows your users to submit tickets via email without the need to have a OneDev account. These tickets can then be created in desired projects, and assigned to appropriate members in your team. All further discussions over the tickets can take place completely in email, with discussion contents posted to ticket as comments. User will also get notifications when there are any ticket activities, for instance, when a relevant release is created or deployed ![service-desk.png](doc/images/service-desk.png) ## A powerful and Intuitive Query Language Thanks to ANTLR again, OneDev ships sophisticated query languages for projects, commits, issues, builds, and pull requests, with intuitive auto-completions and hints. For instance, it enables our customers finding fixed issues between their running release and latest release, and enables us to find all commits submitted by someone touching specified modules, etc. Queries can be saved and subscribed, so that you won't miss anything interested. ![query](doc/images/query.gif) ## A Full-fledge CI/CD Engine without Writing Yaml OneDev ships with GUI to generate CI/CD Yaml. No need to google around for Yaml grammars. A one-liner docker command to start OneDev server and you have a local CI/CD runner automatically. Concerns about server capability to run massive jobs? Another one-liner to connect self-updating agent from any machine. Want auto-scale CI/CD farm? A helm one-liner to deploy OneDev into k8s cluster. Build pipeline, matrix jobs, typed parameters, parameter chaining, step templates, build promotions... too many neat features to elaborate... ![job-def](doc/images/job-command.gif) ![run-job](doc/images/build-option.gif) ![pipeline.gif](doc/images/pipeline.gif) ## Flexible Pull Request Review Policy and Reviewer Suggestion Specify pull request review policy based on author, branch, and changed files. OneDev can leverage git change history to suggest most appropriate reviewers for pull requests touching certain files. ![review-policy](doc/images/review-policy.gif) ## Lightweight Review without Pull Request Comment on any part of code or diff to start a lightweight review without opening pull request. Review comments live through code modification and even file rename to serve as documentation. Each discussion is threaded so that you can easily know discussions with new comments/updates. ![file-comment](doc/images/file-comment.gif) ![thread-comments](doc/images/threaded-comments.png) ## Command Palette to Access Features Quickly Press cmd/ctrl-k to bring up command palette from anywhere. Search projects, files, issues, pull requests, builds, and various settings and jump to them without leaving your keyboard ![command-palette.gif](doc/images/command-palette.gif) ## Write Markdown Pleasantly With a Smart Editor When embedding an image in a markdown file in GitHub/GitLab, you need to upload the image in a separate page, and then figure out the relative path to reference that image. With OneDev, you simply upload the image to desired folder in same editor, and the link will be generated automatically. OneDev tracks your cursor in edit window and scrolls the preview window as necessary so that you can always preview what you are typing. ![markdown](doc/images/markdown.gif) ## SLOC Trend By Language OneDev inspects git history of main branch to calculate trend of source lines of code by language efficiently. ![stats](doc/images/stats.png) ## Project Hierarchy to Facilitate Setting Inheritance Organization is ideal for public service. However, for self-hosted internal use, we feel that a hierarchical structure is more practical to organize projects. Child projects can inherit settings from parent project and can selectively override some of them if necessary. This reduces a lot of overhead to manage a lot of projects in the company. ## Effortless High Availability and Scalability (Enterprise Edition) Just connect multiple OneDev instances to same database, and you will get a cluster to distribute project load to multiple servers, as well as the ability to sync projects with its replicas in real time. If one server goes down, project replicas on other servers will become active immediately without data loss and service interruption. ![replication](doc/images/replication.png) ## Customizable Dashboard (Enterprise Edition) Arrange gadgets in custom dashboard to get important information at a glance. Share dashboard with other users or groups, or make it public for everyone. ![dashboard](doc/images/dashboard.png) ## Cross Project Fast Code Search (Enterprise Edition) Cross project fast code search to find information scattered in multiple projects. Support to search by symbol and regular expression. Works out of box without extra setup. ![xsearch](doc/images/xcode-search.png) ## Web Terminal to Diagnose CI/CD Job (Enterprise Edition) A web terminal to access environment of running CI/CD job. Used together with pause instruction, one can check live environment of the job to help diagnostics, and resume the job afterwards. ![webterminal](doc/images/web-terminal.gif) ## Fast and Reliable with Moderate Resource Usage OneDev is carefully designed with performance in mind. With a 2 core 2GB box, you will get all features above for medium-sized projects. It has been intensively used for more than 5 years, with battle-proven reliability. Fixing bugs is our highest priority, and there is normally few to no known bugs in the wild.

近期下载者

相关文件


收藏者