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
1 change: 0 additions & 1 deletion apps/api/docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
version: '3'
services:
transcript-summarizer-api:
image: transcript-summarizer-api
Expand Down
12 changes: 6 additions & 6 deletions apps/api/docs/production-setup.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ Make sure Redis and MariaDB server are up and running.
GPT_MODEL="gpt-4o"

# Docker env
COMPOSE_PROJECT_NAME=transcript-summarizer-api
COMPOSE_PROJECT_NAME=transcript-summarizer-api
```

Make sure to replace the above example values with appropriate values as per your setup and configuration. Server Port is `3000`, you can update it if you want to use a different port of your choice.
Expand Down Expand Up @@ -114,15 +114,15 @@ Before using Docker, ensure you've configured the environment variables in your
**Step 2: Build your docker container**

```bash
docker-compose build
docker compose build
```

**Step 3: Start the Docker Containers**

To start your application within Docker containers, run the following command:

```bash
docker-compose up -d
docker compose up -d
```

**Step 4: Database Migrations (First-Time Setup)**
Expand All @@ -142,19 +142,19 @@ If you need to update any environment variable values:
2. Stop the running containers:

```bash
docker-compose down
docker compose down
```

3. Rebuild the Docker containers with the updated environment variables:

```bash
docker-compose build
docker compose build
```

4. Start the Docker containers again:

```bash
docker-compose up -d
docker compose up -d
```

With these steps, your application should be up and running in Docker with the updated environment variables.
Expand Down
6 changes: 3 additions & 3 deletions apps/api/docs/usage-guide.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,10 +34,10 @@ Users must have a valid **Microsoft account** for **Azure Authentication**. Ensu
Follow the development setup guides for API and portal to set up the codebase before proceeding further:

1. Set up API:
- [API Development setup](/docs/development-setup.md)
- [API Production setup](/docs/production-setup.md)
- [API Development setup](./development-setup.md)
- [API Production setup](./production-setup.md)
2. Set up Portal:
- [Portal Development setup](/../portal/docs/development-setup.md)
- [Portal Development setup](../../portal/docs/development-setup.md)

## 3. Using the Transcript Summarizer Portal

Expand Down
Loading