Skip to content

Commit ccb40d5

Browse files
sodicvincangerinfomiho
authored
Updates docs and websockets README (#1511)
Co-authored-by: vincanger <[email protected]> Co-authored-by: Mihovil Ilakovac <[email protected]>
1 parent f771210 commit ccb40d5

File tree

3 files changed

+7
-5
lines changed

3 files changed

+7
-5
lines changed

examples/websockets-realtime-voting/README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@ This is an example real-time, Websockets app built with Wasp in TypeScript to sh
44

55
[![wasp websockets app](image.png)](https://www.youtube.com/watch?v=Twy-2P0Co6M)
66

7+
You can try out a deployed version of the app here: https://websockets-client-production.up.railway.app/
8+
79
This app also includes Wasp's integrated auth and a voting system (again, neat!).
810

911
## Running the app

web/blog/2023-10-12-on-importance-of-naming-in-programming.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: "On Importance of Naming in Programming"
2+
title: "On the Importance of Naming in Programming"
33
authors: [martinsos]
44
image: /img/on-importance-of-naming-in-programming/variables-naming-pet-white.png
55
tags: [programming, clean-code]

web/docs/data-model/backends.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -45,11 +45,11 @@ app MyApp {
4545
}
4646
```
4747

48-
2. Delete all the old migrations, since they are SQLite migrations and can't be used with PostgreSQL:
48+
2. Delete all the old migrations, since they are SQLite migrations and can't be used with PostgreSQL, as well as the SQLite database by running [`wasp clean`](https://wasp-lang.dev/docs/general/cli#project-commands):
4949

50-
```bash
51-
rm -r migrations/
52-
```
50+
```bash
51+
rm -r migrations/
52+
wasp clean
5353

5454
3. Ensure your new database is running (check the [section on connecing to a database](#connecting-to-a-database) to see how). Leave it running, since we need it for the next step.
5555
4. In a different terminal, run `wasp db migrate-dev` to apply the changes and create a new initial migration.

0 commit comments

Comments
 (0)