Find a file
2020-12-16 09:35:58 -05:00
.github improve execution time for github test workflow 2020-11-30 21:40:30 -05:00
assets add score-hiding snip per request 2020-12-16 09:35:58 -05:00
config Remove spawn calls (#80) 2020-12-06 11:42:14 -05:00
docker Merge pull request #73 from parasprite/Artist-links-code 2020-12-02 19:30:07 +01:00
index flatten gallery fields; preparation for removal of nested documents from index 2020-08-14 01:24:14 -04:00
lib add score-hiding snip per request 2020-12-16 09:35:58 -05:00
priv format 2020-12-02 14:18:25 -05:00
test Fixes email validation (#74) 2020-11-27 20:14:26 -05:00
.editorconfig Add an .editorconfig file (#152) 2020-06-28 16:09:56 -04:00
.formatter.exs initial 2019-08-14 20:32:32 -04:00
.gitignore remove mnesia remnants 2020-07-28 18:27:58 -04:00
.iex.exs run formatter 2020-01-10 23:20:19 -05:00
docker-compose.yml Better default for CDN_HOST (#64) 2020-11-05 16:15:38 -05:00
LICENSE add totp & registration freeze 2019-08-17 18:06:11 -04:00
mix.exs Elixir 1.11 (#55) 2020-10-26 17:01:29 -04:00
mix.lock update elixir_make to unyanked version 2020-12-06 12:18:09 -05:00
post-receive add release conf for performing migrations 2020-08-17 18:49:44 -04:00
README.md Updates for readme (cgroups v2, SELinux) (#63) 2020-11-05 16:15:55 -05:00

Philomena

Philomena

Getting started

On systems with docker and docker-compose installed, the process should be as simple as:

docker-compose build
docker-compose up

If you use podman and podman-compose instead, the process for constructing a rootless container is nearly identical:

podman-compose build
podman-compose up

Once the application has started, navigate to http://localhost:8080 and login with admin@example.com / trixieisbestpony

Troubleshooting

If you are running Docker on Windows and the application crashes immediately upon startup, please ensure that autocrlf is set to false in your Git config, and then re-clone the repository. Additionally, it is recommended that you allocate at least 4GB of RAM to your Docker VM.

If you run into an Elasticsearch bootstrap error, you may need to increase your max_map_count on the host as follows:

sudo sysctl -w vm.max_map_count=262144

If you have SELinux enforcing (Fedora, Arch, others; manifests as a Could not find a Mix.Project error), you should run the following in the application directory on the host before proceeding:

chcon -Rt svirt_sandbox_file_t .

This allows Docker or Podman to bind mount the application directory into the containers.

If you are using a platform which uses cgroups v2 by default (Fedora 31+), use podman and podman-compose.

Deployment

You need a key installed on the server you target, and the git remote installed in your ssh configuration.

git remote add production philomena@<serverip>:philomena/

The general syntax is:

git push production master

And if everything goes wrong:

git reset HEAD^ --hard
git push -f production master

(to be repeated until it works again)