Line 134:
Line 134:
*Get the application archive of last stable version
*Get the application archive of last stable version
−
+
**'''from zip file'''
−
'''from zip file'''
<source lang="bash">
<source lang="bash">
$ wget http://www.dolibarr.org/files/dolibarr.zip
$ wget http://www.dolibarr.org/files/dolibarr.zip
</source>
</source>
−
+
***Uncompress archive
−
*Uncompress archive
−
<source lang="bash">
<source lang="bash">
$ unzip dolibarr.zip
$ unzip dolibarr.zip
</source>
</source>
−
+
** '''or from git repository'''
−
'''or from git repository'''
<source lang="bash">
<source lang="bash">
$ git clone --depth 1 -b X.Y http://github.com/Dolibarr/dolibarr.git dolibarr
$ git clone --depth 1 -b X.Y http://github.com/Dolibarr/dolibarr.git dolibarr
−
</source>
+
</source> Replace X.Y with the version you want to get. Remove "--depth 1" if you don't mind downloading the entire history of the project (programmers may find it useful but end users probably won't).
−
Replace X.Y with the version you want to get. Remove "--depth 1" if you don't mind downloading the entire history of the project (programmers may find it useful but end users probably won't).
*Rename directory dolibarr-x.y.z into dolibarr to have a directory name that does not depends on version (replace x.y.z with source version)
*Rename directory dolibarr-x.y.z into dolibarr to have a directory name that does not depends on version (replace x.y.z with source version)