Skip to content

Commit

Permalink
Tweak setup documentation to be a bit more clear (deptagency#329)
Browse files Browse the repository at this point in the history
* Tweak setup documentation to be a bit more clear

* Update apps/cms/README.md

Co-authored-by: Simon Ingeson <44818+smonn@users.noreply.github.com>
  • Loading branch information
nring and smonn authored Mar 15, 2022
1 parent b2e4240 commit 2d092a4
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions apps/cms/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,10 @@ The purpose of the CMS is to provide content authors the ability to create and m

Once the environment variables have been added to the `.env` file, you'll want to create a new Postgres database with the name specified in the `DB_CONNECTION_STRING` in the `.env` file and create an appropriate schema for `DB_SEARCH_PATH`. You'll also want to set the `ADMIN_EMAIL` and `ADMIN_PASSWORD` values for the initial CMS admin user.

If using a single database, create the `cms` schema in your database before running the bootstrap scripts below.

```bash
CREATE SCHEMA "cms"
Run the bootstrap and import commands via Nx:

```bash
Expand Down
2 changes: 1 addition & 1 deletion apps/web/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ npm install
Once everything is configured, you can start everything in development/watch mode:

```bash
npm run dev
nx serve web
```

To build _everything_:
Expand Down

0 comments on commit 2d092a4

Please sign in to comment.