Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 17 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,22 @@ dependency-related or migration-related issues.

Your Docker services should now be up and running 🎉

### Development Services

When running the project, the following services are available:

| Service | URL / Port | Description | Credentials |
|--------------------------|---------------------------------------------------|---------------------------------|-------------------------------|
| **Frontend** | N/A | | |
| **Backend API** | [http://localhost:10001](http://localhost:10001) | Django | `admin@example.com` / `admin` |
| **Keycloak** | N/A | | |
| **Nginx** | N/A | | |
| **PostgreSQL** | 10012 | Database server | `dinum` / `pass` |
| **Redis** | 10013 | Cache and message broker | No auth required |
| **Opensearch** | [http://localhost:10014](http://localhost:10014) | Document storage | No auth required |
| **Opensearch admin** | 10015 | OpenSearch Performance Analyzer | |
| **Opensearch dashboard** | [http://localhost:10016](http://localhost:10016) | Opensearch UI | No auth required |

### Adding content

You can create a basic demo site by running:
Expand All @@ -73,7 +89,7 @@ $ make help
### Django admin

You can access the Django admin site at
[http://localhost:8071/admin](http://localhost:8071/admin).
[http://localhost:10001/admin](http://localhost:10001/admin).

You first need to create a superuser account:

Expand Down
12 changes: 7 additions & 5 deletions compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ services:
env_file:
- env.d/development/postgresql
ports:
- "25432:5432"
- "10012:5432"

opensearch:
image: opensearchproject/opensearch:latest
Expand All @@ -22,8 +22,8 @@ services:
volumes:
- ./data/opensearch:/usr/share/opensearch/data
ports:
- "9200:9200"
- "9600:9600"
- "10014:9200"
- "10015:9600"
healthcheck:
test: ["CMD", "curl", "--head", "-fsS", "http://localhost:9200/"]
start_period: 5s
Expand All @@ -34,7 +34,7 @@ services:
opensearch-dashboards:
image: opensearchproject/opensearch-dashboards:latest
ports:
- "5601:5601"
- "10016:5601"
environment:
OPENSEARCH_HOSTS: '["http://opensearch:9200"]'
DISABLE_SECURITY_DASHBOARDS_PLUGIN: "true"
Expand All @@ -45,6 +45,8 @@ services:

redis:
image: redis:5
ports:
- "10013:6379"

app:
build:
Expand All @@ -61,7 +63,7 @@ services:
- env.d/development/common
- env.d/development/postgresql
ports:
- "8081:8000"
- "10001:8000"
networks:
default: {}
lasuite:
Expand Down
12 changes: 0 additions & 12 deletions docs/system-requirements.md

This file was deleted.

Loading