Add file_envs for secrets and allow passing database url via separate envs #246
1 changed files with 6 additions and 0 deletions
6
Justfile
6
Justfile
|
|
@ -86,6 +86,12 @@ clean:
|
||||||
rm -rf .elixir_ls
|
rm -rf .elixir_ls
|
||||||
rm -rf _build
|
rm -rf _build
|
||||||
|
|
||||||
|
# Remove Git merge conflict markers from gettext files
|
||||||
|
remove-gettext-conflicts:
|
||||||
|
#!/usr/bin/env bash
|
||||||
|
set -euo pipefail
|
||||||
|
find priv/gettext -type f -exec sed -i '/^<<<<<<< HEAD$/d; /^=======$/d; /^>>>>>>>/d' {} \;
|
||||||
|
|
||||||
# Production environment commands
|
# Production environment commands
|
||||||
# ================================
|
# ================================
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue