Skip to content

Commit

Permalink
Update developer docs to work on Fedora 40+
Browse files Browse the repository at this point in the history
On Fedora 40 bundler installs by default to vendor/bundle and this
ignores the directory. While installing it was also noticed that
postgresql-server is the real server package and that the server needs
to be running. For simplicity it's configured to always start on boot.
  • Loading branch information
ekohl committed Nov 21, 2024
1 parent f295d1c commit a9cf6b4
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@ config/hooks
*.csv
.envrc
node_modules
vendor/bundle
vendor/ruby
public/webpack
.env*
Expand All @@ -55,4 +56,4 @@ npm-debug.log
.nvmrc
mkmf.log
.yardoc/
webpack/assets/javascripts/all_react_app_exports.js
webpack/assets/javascripts/all_react_app_exports.js
3 changes: 2 additions & 1 deletion developer_docs/foreman_dev_setup.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -55,8 +55,9 @@ Use the following steps to set up PostgreSQL on RPM based distributions:

[source, bash]
....
sudo dnf install postgresql
sudo dnf install postgresql-server
sudo postgresql-setup --initdb
sudo systemctl enable --now postgresql
sudo -u postgres createuser --createdb $USER
....

Expand Down

0 comments on commit a9cf6b4

Please sign in to comment.