Skip to content

Commit b635c55

Browse files
committed
0.1.0 release
1 parent c7d79d9 commit b635c55

File tree

1 file changed

+13
-9
lines changed

1 file changed

+13
-9
lines changed

README.md

Lines changed: 13 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
# CMMC-Map
22

3-
This is a work in progress project to handle CMMC (Cybersecurity Maturation Model Certification) policy with a web app. Version 0.1.0 comming soon!
3+
This is a web app to handle CMMC (Cybersecurity Maturation Model Certification) policy with a web app.
4+
5+
Version 0.1.0 out now!
46

57
This project is licensed under the MIT License - see the [LICENSE.md](LICENSE.md) file for details
68

@@ -11,7 +13,9 @@ This project is licensed under the MIT License - see the [LICENSE.md](LICENSE.md
1113

1214
## Running
1315

14-
Prebuilt docker containers are a work in progress, but for now containers can be built with the Dockerfile.prod scripts in backend and frontend each.
16+
Grabbing the latest release and running the docker compose is the simplest option.
17+
18+
Alternativly, running and building locally can be done with the Dockerfile.prod scripts in backend and frontend each.
1519

1620
Or a single node stack can be run with
1721

@@ -40,13 +44,13 @@ The compose files simplify a lot, but if you'd like the specific environment var
4044

4145
### Backend Docker
4246

43-
| Environment Variable | Description | Default/Required |
44-
| -------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------- |
45-
| PROJECT_URL | The origin you are serving the whole application from. For example: https://example.com | Required |
46-
| DJANGO_ROOT_PASSWORD | The backend creates a root user by default to access the admin interface to create more users. | Required |
47-
| DJANGO_SECRET_KEY | The [secret key Django uses for signing things](https://docs.djangoproject.com/en/5.0/topics/signing/) | Required |
48-
| DJANGO_DEBUG | Whether to run Django in debug mode or production | False |
49-
| DJANGO_ALLOWED_HOSTS | Essentially a firewall of all sources Django will allow. For most cases all ('\*') is what you'll want. | Required |
47+
| Environment Variable | Description | Default/Required |
48+
| -------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------- |
49+
| PROJECT_URL | The origin you are serving the whole application from. For example: https://example.com | Required |
50+
| DJANGO_ROOT_PASSWORD | The backend creates a root user by default to access the admin interface to create more users. | Required |
51+
| DJANGO_SECRET_KEY | The [secret key Django uses for signing things](https://docs.djangoproject.com/en/5.0/topics/signing/) | Required |
52+
| DJANGO_DEBUG | Whether to run Django in debug mode or production | False |
53+
| DJANGO_ALLOWED_HOSTS | Essentially a firewall of all sources Django will allow. For most cases all ('\*') is what you'll want. | Required |
5054
| DJANGO_DATABASE_URL | This uses [dj-database-url](https://pypi.org/project/dj-database-url/) to tell Django how to connect to the database. In theory it could really be any database Django supports, but it's only tested with MariaDB and that's what the docker entrypoint tries to connect to when starting. | Required |
5155

5256
### Frontend Docker

0 commit comments

Comments
 (0)