From 9851e56f9b839071f6c17021b73fdf084ccb5e33 Mon Sep 17 00:00:00 2001 From: Kinetix Date: Fri, 6 Dec 2024 10:34:13 -0800 Subject: [PATCH 1/2] Fix citext to postgis --- docs/DEPLOY.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/DEPLOY.md b/docs/DEPLOY.md index 7423cde210..f12c6c3174 100644 --- a/docs/DEPLOY.md +++ b/docs/DEPLOY.md @@ -162,7 +162,7 @@ You may also want to put this in the appropriate place in your system so your ch - If you’re using RDS or some other locked down DB, you may need to run `CREATE EXTENSION IF NOT EXISTS citext WITH SCHEMA public;` on your database with elevated privileges. -- You may also need to enable the `postgis` extension manually by running `CREATE EXTENSION IF NOT EXISTS citext WITH SCHEMA public;` on your database with elevated privileges. +- You may also need to enable the `postgis` extension manually by running `CREATE EXTENSION IF NOT EXISTS postgis WITH SCHEMA public;` on your database with elevated privileges. - You can check if your instance is configured correctly and get to the iex console by running `bin/bonfire start` From e704b9e872a8a6b29aedd1983e9d07919c3c89ef Mon Sep 17 00:00:00 2001 From: Kinetix Date: Mon, 9 Dec 2024 22:30:58 -0800 Subject: [PATCH 2/2] Link fix + addition --- docs/DEPLOY.md | 2 +- docs/HACKING.md | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/DEPLOY.md b/docs/DEPLOY.md index f12c6c3174..cd4bf799e8 100644 --- a/docs/DEPLOY.md +++ b/docs/DEPLOY.md @@ -7,7 +7,7 @@ A short guide to running Bonfire in a production environment and setting up a di > Bonfire is currently beta software. While it's fun to play with it, we would not recommend running any production instances yet (meaning not using it for your primary fediverse identity) because it's not quite ready for that today. -_These instructions are for setting up Bonfire in production. If you want to run the backend in development, please refer to our [Installation guide](./hacking) instead._ +_These instructions are for setting up Bonfire in production. If you want to run the backend in development, please refer to our [Installation guide](./hacking.html) instead._ ## Security Warning diff --git a/docs/HACKING.md b/docs/HACKING.md index d1d4db8d39..7e23bb80ea 100644 --- a/docs/HACKING.md +++ b/docs/HACKING.md @@ -2,7 +2,7 @@ > #### Info {: .info} > -> These instructions are for hacking on Bonfire. If you wish to deploy in production, please refer to our deployment guide instead. +> These instructions are for hacking on Bonfire. If you wish to deploy in production, please refer to our [Hosting Guide](./deploy.html) instead. Hello, potential contributor! :-) @@ -333,4 +333,4 @@ config :bonfire, Bonfire.Common.Repo, ### Compilation errors like `(ArgumentError) could not load module Needle.ULID due to reason :unavailable` or `(ArgumentError) could not load module Poison.Encoder due to reason :unavailable` -This seems to be an issue with the order of compilation, you can usually work around it by cleaning the deps it complains about, eg: `just deps-clean needle_ulid` or `just deps-clean poison` or `just deps-clean jason` \ No newline at end of file +This seems to be an issue with the order of compilation, you can usually work around it by cleaning the deps it complains about, eg: `just deps-clean needle_ulid` or `just deps-clean poison` or `just deps-clean jason`