Skip to content

Commit

Permalink
Merged Lesson loading
Browse files Browse the repository at this point in the history
  • Loading branch information
Rajat Saxena committed Nov 1, 2024
1 parent a17ce95 commit 7b3a9fc
Show file tree
Hide file tree
Showing 20 changed files with 292 additions and 235 deletions.
12 changes: 12 additions & 0 deletions .yarn/versions/0bd6056a.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
undecided:
- "@courselit/docs"
- "@courselit/queue"
- "@courselit/web"
- "@courselit/common-models"
- "@courselit/common-widgets"
- "@courselit/components-library"
- "@courselit/icons"
- "@courselit/state-management"
- tailwind-config
- "@courselit/text-editor"
- tsconfig
12 changes: 12 additions & 0 deletions .yarn/versions/8c66ba8e.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
undecided:
- "@courselit/docs"
- "@courselit/queue"
- "@courselit/web"
- "@courselit/common-models"
- "@courselit/common-widgets"
- "@courselit/components-library"
- "@courselit/icons"
- "@courselit/state-management"
- tailwind-config
- "@courselit/text-editor"
- tsconfig
2 changes: 1 addition & 1 deletion apps/docs/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@courselit/docs",
"type": "module",
"version": "0.31.2",
"version": "0.31.4",
"private": true,
"scripts": {
"dev": "astro dev",
Expand Down
4 changes: 3 additions & 1 deletion apps/docs/src/pages/en/self-hosting/self-host.md
Original file line number Diff line number Diff line change
Expand Up @@ -147,11 +147,13 @@ docker ps
Once you have the ID of the `MediaLit` container, run the following to generate an API key

```
docker exec <container_id_from_above_step> node dist/scripts/create-local-user.js
docker exec <container_id | container_name> node /app/apps/api/dist/src/scripts/create-local-user.js <email>
```

Keep the generated API key safe. We will use it in the following step.

> For the most up-to-date instructions, refer to the official [Readme](https://github.com/codelitdev/medialit?tab=readme-ov-file#creating-a-local-user) of MediaLit.
#### Using Self-hosted MediaLit With CourseLit

Open the `.env` file and add the following lines.
Expand Down
2 changes: 1 addition & 1 deletion apps/queue/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@courselit/queue",
"version": "0.22.2",
"version": "0.22.4",
"private": true,
"packageManager": "[email protected]",
"scripts": {
Expand Down
5 changes: 4 additions & 1 deletion apps/web/components/admin/mails/sequences-list.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,10 @@ const SequencesList = ({
(broadcast.emails[0].subject === " "
? "--"
: broadcast.emails[0].subject)}
{type === "sequence" && broadcast.title}
{type === "sequence" &&
(broadcast.title === " "
? "Untitled Sequence"
: broadcast.title)}
</Link>
</td>
<td align="right">
Expand Down
Loading

0 comments on commit 7b3a9fc

Please sign in to comment.