doc(dev): update instruction for installing

This commit is contained in:
Jérémy Dufraisse 2023-01-23 19:25:59 +01:00
parent 94d5017c55
commit 8d660146a3

View File

@ -4,9 +4,23 @@ This package is the the main SeaCMS package.
## Installation ## Installation
- copy this repository on the server - install [`git`](https://git-scm.com/downloads)
- copy the repository `seacms-manager` in a folder `seacms-manager` into the the folder of this curret repository - install [`composer`](https://getcomposer.org/download/)
- then start [`composer install`](https://getcomposer.org/) for this repository - clone repository
```bash
git clone https://git.defis.info/SeaCMS/seacms.git seacms
```
_choose the folder name by replacing `seacms` in the command line by the wanted path
or (equivalent to `git clone`)
```bash
mkdir seacms
cd seacms
git init
git remote add origin https://git.defis.info/SeaCMS/seacms.git
git fetch --all
git checkout master
```
- then start `composer install`
## TODO ## TODO