Skip to content
Open
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
11 changes: 11 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -106,6 +106,17 @@ You can run the tests interactively via

yarn test -s

## Viewing the Hub database

Note that the database has lots of whitespace padding within columns, so it is useful to use a client like [Postico](https://eggerapps.at/postico/) to view the data, or do `SELECT` for specific columns.
Otherwise, the tables might appear empty.

```sh
yarn start-hub
docker exec -it cardstack-pg psql -U postgres pgsearch_cardboard_development
SELECT id from documents;
```

## Creating Cards

You create a new card by running the generator in the `portfolio/` directory of the project:
Expand Down