Skip to content

Commit

Permalink
Splitting check-requirements and check-requirements --development
Browse files Browse the repository at this point in the history
  • Loading branch information
psaiz authored and fenekku committed Jun 30, 2023
1 parent f456c38 commit caf205e
Showing 1 changed file with 10 additions and 4 deletions.
14 changes: 10 additions & 4 deletions docs/install/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ pip install invenio-cli
You can check if the proper requirements are installed via `invenio-cli`:

```console
invenio-cli check-requirements --development
invenio-cli check-requirements
```

#### [3. Scaffold project](scaffold.md)
Expand All @@ -38,16 +38,24 @@ Scaffold your InvenioRDM instance. Replace ``<version>`` with the version you wa
- LTS release (for production systems): ``v9.1``
- STS release (for feature previews): ``v11.0``

```
```console
invenio-cli init rdm -c <version>
# e.g:
invenio-cli init rdm -c v9.1
```

You will be asked several questions. If in doubt, choose the default.


#### [4. Build, setup and run](build-setup-run.md)

Now the scaffoling is complete, it is time to check the development requirements
```console
cd my-site/
invenio-cli check-requirements --development
```


You can run the main InvenioRDM application in two modes (choose one):

- Containerized application and services (good for a quick preview).
Expand All @@ -56,14 +64,12 @@ You can run the main InvenioRDM application in two modes (choose one):
**Containerized application**

```console
cd my-site/
invenio-cli containers start --lock --build --setup
```

**Local application**

```console
cd my-site/
invenio-cli install
invenio-cli services setup
invenio-cli run
Expand Down

0 comments on commit caf205e

Please sign in to comment.