You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/IntelOwl/installation.md
+28-2Lines changed: 28 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -282,13 +282,28 @@ This is a destructive operation but can be useful to start again the project fro
282
282
283
283
`./start prod down -- -v`
284
284
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
+
285
300
## After Deployment
286
301
287
302
### Users creation
288
303
289
304
You may want to run `docker exec -ti intelowl_uwsgi python3 manage.py createsuperuser` after first run to create a superuser.
290
305
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)
292
307
293
308
## Update and Rebuild
294
309
@@ -420,7 +435,7 @@ So, to migrate to the new major version you would need to delete your DB. To do
420
435
python3 start.py prod down -v
421
436
```
422
437
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).
424
439
425
440
#### Updating to >=2.0.0 from a 1.x.x version
426
441
@@ -445,3 +460,14 @@ If you are updating to >[v1.3.0](https://github.com/intelowlproject/IntelOwl/rel
445
460
```
446
461
447
462
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