Skip to content

Commit

Permalink
Merge branch 'main' into feat/implementation-groups
Browse files Browse the repository at this point in the history
  • Loading branch information
nas-tabchiche committed May 5, 2024
2 parents 422ca9e + 3c7d9ae commit 73e3930
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
6 changes: 5 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,6 @@ Checkout the [library](/backend/library/libraries/) and [tools](/tools/) for the
- AI Act
- Part-IS
- SecNumCloud
- NIST SP 800-218
- SOX
- MASVS
- FedRAMP
Expand Down Expand Up @@ -179,6 +178,10 @@ For the following executions, use "docker compose up" directly.
> [!TIP]
> If you want a fresh install, simply delete the `db` directory, (default: backend/db) where the database is stored.
## Docker-compose on remote

For docker setup on a remote server or hypervisor, checkout the [specific instructions here](https://intuitem.gitbook.io/ciso-assistant/deployment/remote-virtualization)

## Setting up CISO Assistant for development

### Requirements
Expand Down Expand Up @@ -402,6 +405,7 @@ Set DJANGO_DEBUG=False for security reason.
- [Django](https://www.djangoproject.com/) - Python Web Development Framework
- [SvelteKit](https://kit.svelte.dev/) - Frontend framework
- [Gunicorn](https://gunicorn.org/) - Python WSGI HTTP Server for UNIX
- [Caddy](https://caddyserver.com) - The coolest reverse Proxy
- [Gitbook](https://www.gitbook.com) - Documentation platform
- [PostgreSQL](https://www.postgresql.org/) - Open Source RDBMS
- [SQLite](https://www.sqlite.org/index.html) - Open Source RDBMS
Expand Down
1 change: 1 addition & 0 deletions backend/core/helpers.py
Original file line number Diff line number Diff line change
Expand Up @@ -485,6 +485,7 @@ def applied_control_per_status(user: User):
v = {"value": count, "itemStyle": {"color": color_map[st[0]]}}
values.append(v)
labels.append(st[1])
labels.insert(0, "undefined")
local_lables = [camel_case(str(label)) for label in labels]
return {"localLables": local_lables, "labels": labels, "values": values}

Expand Down

0 comments on commit 73e3930

Please sign in to comment.