diff options
author | href <href@random.sh> | 2018-12-17 22:50:59 +0100 |
---|---|---|
committer | href <href@random.sh> | 2018-12-17 22:50:59 +0100 |
commit | b1860fe85af1d32de937f466ba65d03614952e31 (patch) | |
tree | 9b1239247d38a2aaa60627fc9bd4db44ed67d136 /.gitignore | |
parent | 3879500c87829a5cf1377ca7ccdb7bf92c75367f (diff) | |
download | pleroma-b1860fe85af1d32de937f466ba65d03614952e31.tar.gz pleroma-b1860fe85af1d32de937f466ba65d03614952e31.zip |
Instance/Static runtime plug
This allows to set-up an arbitrary directory which overrides most of the
static files: index.html static/ emoji/ packs/ sounds/ images/ instance/
favicon.png.
If the files are not present in the directory, the bundled ones in
priv/static will be used.
Diffstat (limited to '.gitignore')
-rw-r--r-- | .gitignore | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/.gitignore b/.gitignore index b71dfa9fa..72fe2ce43 100644 --- a/.gitignore +++ b/.gitignore @@ -8,7 +8,9 @@ /.elixir_ls /test/fixtures/test_tmp.txt /test/fixtures/image_tmp.jpg +/test/tmp/ /doc +/instance # Prevent committing custom emojis /priv/static/emoji/custom/* @@ -31,4 +33,4 @@ erl_crash.dump .env # Editor config -/.vscode +/.vscode/ |