main
ROOT /
pages /
quickstart.md
37 lines | ISO-8859-1 | 1 KB

5-minute Quickstart

  1. Run below command on Linux/Mac to start OneDev in docker mode:
docker run --tty --rm -v /var/run/docker.sock:/var/run/docker.sock -v $(pwd)/onedev:/opt/onedev -p 6610:6610 -p 6611:6611 1dev/server

If you want to try on Windows machine, please follow the bare metal installation guide

  1. Point your browser to http://localhost:6610 to set up OneDev. In system setting page, just use suggested server url (http://localhost:6610)

  2. From OneDev projects page, add a project my-app

  3. Run below command from your terminal to create a react application:

npx create-react-app my-app
  1. Change into directory my-app, and run below command to push code to OneDev:
git remote add origin http://localhost:6610/my-app
git push origin master:master

When prompted for authentication, input administrator user name and password specified above

  1. Visit files page of project my-app from OneDev, click link add build spec to bring up the GUI to add build specification. For typical projects, OneDev suggests default job templates like below:

Add Job Wizard

  1. Just use the default template, and save the spec. Now you will see that a CI build is running:

After Add Ci Job

  1. Congrats! You've finished the tutorial. Continue to check more tutorials if you are interested.
Please wait...
Page is in error, reload to recover