Last active
April 3, 2024 00:33
-
-
Save vdeemann/0861014a9370c6058abe9042da906424 to your computer and use it in GitHub Desktop.
Revisions
-
vdeemann revised this gist
Apr 3, 2024 . 1 changed file with 2 additions and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -38,4 +38,5 @@ make check-world # used this instead # https://postgresapp.com/ cd demo mix ecto.create mix phx.server -
vdeemann revised this gist
Apr 3, 2024 . 1 changed file with 9 additions and 3 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -3,9 +3,9 @@ brew install elixir mix archive.install hex phx_new mix phx.new demo ################ # postgresql development environment setup # https://www.highgo.ca/2023/06/23/setup-postgresql-development-environment-on-macos/ brew install git brew install icu4c @@ -32,4 +32,10 @@ sudo perl -MCPAN -e 'install IPC::Run' ./configure --enable-tap-tests make -j make check-world ################ # used this instead # https://postgresapp.com/ cd demo mix ecto.create -
vdeemann revised this gist
Apr 2, 2024 . 1 changed file with 3 additions and 0 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -3,6 +3,9 @@ brew install elixir mix archive.install hex phx_new mix phx.new demo # postgresql setup # https://www.highgo.ca/2023/06/23/setup-postgresql-development-environment-on-macos/ brew install git brew install icu4c -
vdeemann revised this gist
Apr 2, 2024 . 1 changed file with 12 additions and 0 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -18,3 +18,15 @@ cd postgres ./configure make -j make check make install ./configure --enable-tap-tests sudo perl -MCPAN -e 'install IPC::Run' ./configure --enable-tap-tests make -j make check-world -
vdeemann created this gist
Apr 2, 2024 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,20 @@ brew install elixir mix archive.install hex phx_new mix phx.new demo brew install git brew install icu4c brew info icu4c echo 'export PATH="/usr/local/opt/icu4c/bin:$PATH"' >> ~/.zshrc echo 'export PATH="/usr/local/opt/icu4c/sbin:$PATH"' >> ~/.zshrc export LDFLAGS="-L/usr/local/opt/icu4c/lib" export CPPFLAGS="-I/usr/local/opt/icu4c/include" export PKG_CONFIG_PATH="/usr/local/opt/icu4c/lib/pkgconfig" git clone https://github.com/postgres/postgres.git cd postgres ./configure make -j