Advertisement
Guest User

Untitled

a guest
Jan 18th, 2017
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.45 KB | None | 0 0
  1. # atvise-scm Installation Manual
  2.  
  3. _atvise-scm Version 0.4.0-alpha8_
  4. _atvise-scm-cli Version 0.3.0_
  5.  
  6. ## Prerequisites
  7.  
  8. * Node.js version 6.0 or newer
  9. * Git Version Control
  10.  
  11. ## Step By Step Instructions
  12.  
  13. _All following instructions are to be issued on a command prompt (e.g. cmd.exe
  14. on windows, bash on Linux, etc.)_
  15.  
  16. 1. As root (or Admin) execute: **npm install -g atvise-scm-cli**
  17.  
  18. This installs the command line interface that you will later be using to initialize and manage an atvise-scm project.
  19.  
  20. 2. Create a project directory and change into it.
  21.  
  22. 3. Execute: **atvise-scm init**
  23.  
  24. A dialog will appear and ask you for some project details. Those details will be saved in the file **Atviseproject.js**.
  25.  
  26. 4. Still in the project directory, execute: **npm install atvise-scm --save-dev**
  27.  
  28. You can now list all available tasks with **atvise-scm --tasks**
  29.  
  30. 5. Make sure atvise is running and hosting your project. Then execute: **atvise-scm pull**
  31.  
  32. Before using any other commands, we recommend pulling in all project specific nodes so they are registered in the **.atviserc** file.
  33.  
  34. You can now use the tool to pull changes in your nodes.db into the atvise-scm project directory, and push changes in the other direction with **atvise-scm pull** and **atvise-scm push** respectively. You can also monitor and automatically push changes in your project directory to your nodes.db by starting a watch process with **atvise-scm watch**. The file watching process can be quit with **CTRL-C**.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement