Skip to content

Commit b57be82

Browse files
committed
updated installation doc
1 parent ac9a85c commit b57be82

File tree

1 file changed

+28
-2
lines changed

1 file changed

+28
-2
lines changed

docs/IntelOwl/installation.md

Lines changed: 28 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -282,13 +282,28 @@ This is a destructive operation but can be useful to start again the project fro
282282

283283
`./start prod down -- -v`
284284

285+
### Get the experimental features in the develop branch
286+
If you cannot wait for official releases and you want to leverage the most recent features added in the development branch, you can do it!
287+
288+
Follow these steps:
289+
```bash
290+
# go to your IntelOwl directory
291+
cd /home/user/IntelOwl
292+
# switch to the develop branch
293+
git checkout develop
294+
# locally build the development branch
295+
./start test build
296+
# run IntelOwl
297+
./start test up
298+
```
299+
285300
## After Deployment
286301

287302
### Users creation
288303

289304
You may want to run `docker exec -ti intelowl_uwsgi python3 manage.py createsuperuser` after first run to create a superuser.
290305
Then you can add other users directly from the Django Admin Interface after having logged with the superuser account.
291-
To manage users, organizations and their visibility please refer to this [section](/Advanced-Usage.md#organizations-and-user-management)
306+
To manage users, organizations and their visibility please refer to this [section](https://intelowlproject.github.io/docs/IntelOwl/advanced_usage/#organizations-and-user-management)
292307

293308
## Update and Rebuild
294309

@@ -420,7 +435,7 @@ So, to migrate to the new major version you would need to delete your DB. To do
420435
python3 start.py prod down -v
421436
```
422437

423-
Please be aware that, while this can be an important effort to manage, the v4 IntelOwl provides an easier way to add, invite and manage users from the application itself. See [the Organization section](./Advanced-Usage.md#organizations-and-user-management).
438+
Please be aware that, while this can be an important effort to manage, the v4 IntelOwl provides an easier way to add, invite and manage users from the application itself. See [the Organization section](https://intelowlproject.github.io/docs/IntelOwl/advanced_usage/#organizations-and-user-management).
424439

425440
#### Updating to >=2.0.0 from a 1.x.x version
426441

@@ -445,3 +460,14 @@ If you are updating to >[v1.3.0](https://github.com/intelowlproject/IntelOwl/rel
445460
```
446461

447462
3. If you see "Update successful!", everything went fine and now you can enjoy the new features!
463+
464+
465+
## Releases Schedule
466+
467+
From 2025 onwards, maintainers are adopting a new schedule for future releases containing new features: expect **a new release on every April and October** (like Ubuntu :P).
468+
469+
In this way maintainers aim to provide constant support for the users and expected deadlines to get the new features from the project into the official releases.
470+
471+
Please remember that you can always use the most recent features available in the development branch at anytime! See [this section](#get-the-experimental-features-in-the-develop-branch) for additional details
472+
473+
Obviously, as always, important bugs and fixes will be handled differently with dedicated patch releases.

0 commit comments

Comments
 (0)