Replaced coordination with cooperation

It seems that the name was changed at some point or something along those lines, so using coordination breaks the setup process.
This commit is contained in:
Aaron Meese 2021-12-12 16:25:43 -05:00
parent 8467fbc2ee
commit 41f83f51c8
6 changed files with 9 additions and 9 deletions

View File

@ -87,7 +87,7 @@ jobs:
run: mix test
test_cooperation_flavour:
name: Test coordination flavour
name: Test cooperation flavour
runs-on: ubuntu-latest
container: elixir:alpine
env:

View File

@ -27,9 +27,9 @@ $ cd bonfire
2. The first thing to do is choosing what flavour of Bonfire you want to deploy (the default is `classic`), as each flavour has its own Docker image and config.
For example if you want to run the `coordination` flavour (you may want to use direnv or something similar to persist this):
For example if you want to run the `cooperation` flavour (you may want to use direnv or something similar to persist this):
`export FLAVOUR=coordination MIX_ENV=prod`
`export FLAVOUR=cooperation MIX_ENV=prod`
3. Once you've picked a flavour, run this command to initialise some default config (.env files which won't be checked into git):

View File

@ -23,9 +23,9 @@ $ cd bonfire
- The first thing to do is choosing what flavour of Bonfire you want to hack on (the default is `classic`), as each flavour has its own config.
For example if you want to run the `coordination` flavour:
For example if you want to run the `cooperation` flavour:
`export FLAVOUR=coordination`
`export FLAVOUR=cooperation`
- Once you've picked a flavour, run this command to initialise some default config (.env files which won't be checked into git):

View File

@ -96,8 +96,8 @@ in
POSTGRES_SOCKET_DIR = lib.mkIf (dbSocketDir != null) dbSocketDir;
HOSTNAME = hostname;
WITH_DOCKER = "no";
FLAVOUR = "coordination";
BONFIRE_FLAVOUR = "flavours/coordination";
FLAVOUR = "cooperation";
BONFIRE_FLAVOUR = "flavours/cooperation";
};
};
};

View File

@ -1,4 +1,4 @@
{ pkgs, self, flavour ? "coordination" }:
{ pkgs, self, flavour ? "cooperation" }:
let
beamPackages = with pkgs; beam.packagesWith beam.interpreters.erlang;
in

View File

@ -1,4 +1,4 @@
{ pkgs, flavour ? "coordination" }:
{ pkgs, flavour ? "cooperation" }:
with pkgs;