Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6c64955 commit 562dd1dCopy full SHA for 562dd1d
docs/dogfood/index.md
@@ -55,9 +55,9 @@ The following explains how to do certain things related to dogfooding.
55
1. Add `export DB_FROM=coderdb` to your `.bashrc` (make sure you `source ~/.bashrc`)
56
2. Run `sudo service postgresql start`
57
3. Run `sudo -u postgres psql` (this will open the PostgreSQL CLI)
58
- 4. Run `postgres-# alter user postgres password 'postgres';`
+ 4. Run `postgres-# ALTER USER postgres PASSWORD 'postgres';`
59
5. Run `postgres-# CREATE DATABASE coderdb;`
60
- 6. Run `postgres-# grant all privileges on database coderdb to postgres;`
+ 6. Run `postgres-# GRANT ALL PRIVILEGES ON DATABASE coderdb TO postgres;`
61
7. Run `exit` to exit the PostgreSQL terminal
62
8. Try `make bin` again.
63
</aside>
0 commit comments