diff options
author | Mark Felder <feld@feld.me> | 2023-12-20 14:11:52 -0500 |
---|---|---|
committer | Mark Felder <feld@feld.me> | 2023-12-20 14:12:06 -0500 |
commit | bf57fd82bb3accd369b9bdb605e24c96134b18a9 (patch) | |
tree | d7295de689cd54417888860186b3b0808f282da9 /docs/development/setting_up_pleroma_dev.md | |
parent | 99b07c817e65d8855069a996777d41a9984f93bf (diff) | |
download | pleroma-bf57fd82bb3accd369b9bdb605e24c96134b18a9.tar.gz pleroma-bf57fd82bb3accd369b9bdb605e24c96134b18a9.zip |
Clarify location of test.secret.exs file
Diffstat (limited to 'docs/development/setting_up_pleroma_dev.md')
-rw-r--r-- | docs/development/setting_up_pleroma_dev.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/development/setting_up_pleroma_dev.md b/docs/development/setting_up_pleroma_dev.md index 8da761d62..ddf04cab1 100644 --- a/docs/development/setting_up_pleroma_dev.md +++ b/docs/development/setting_up_pleroma_dev.md @@ -38,7 +38,7 @@ config :logger, :console, ## Testing -1. Create a `test.secret.exs` file with the content as shown below +1. Create a `config/test.secret.exs` file with the content as shown below 2. Create the database user and test database. 1. You can use the `config/setup_db.psql` as a template. Copy the file if you want and change the database name, user and password to the values for the test-database (e.g. 'pleroma_local_test' for database and user). Then run this file like you did during installation. 2. The tests will try to create the Database, so we'll have to allow our test-database user to create databases, `sudo -Hu postgres psql -c "ALTER USER pleroma_local_test WITH CREATEDB;"` |