Find a file
2025-12-02 14:31:10 +01:00
.devcontainer Devcontainer Setup v2 (#644) 2025-11-19 10:06:57 +01:00
.githooks Remove stray & 2025-11-07 04:18:55 +00:00
.github web image + prod setup script 2025-11-24 22:09:45 +01:00
assets Prettier 2025-11-18 22:55:38 -05:00
config derive prod app url from APP_ORIGIN full URL env var 2025-12-01 20:05:31 +01:00
docker elixir 1.19.4 2025-12-02 14:31:10 +01:00
lib create buckets release task for local s3 deployment 2025-12-02 12:15:22 +01:00
native/philomena Update comrak to 0.45.0 (#634) 2025-10-26 16:28:32 +01:00
priv use env vars to generate the initial admin account 2025-12-02 14:23:48 +01:00
scripts Devcontainer Setup v2 (#644) 2025-11-19 10:06:57 +01:00
test Adds user self deactivation mechanism (#422) 2025-10-22 20:59:05 +02:00
.credo.exs Fix some credo issues 2024-06-24 23:23:43 -04:00
.dialyzer_ignore.exs dialyzer is a butt 2025-09-20 19:10:52 +02:00
.dockerignore ..but exclude node_modules 2025-10-14 14:13:26 +02:00
.editorconfig Add switch_case_ident to .editorconfig to fix the defaults of shfmt (facehoof) 2025-04-06 20:03:27 +00:00
.formatter.exs initial 2019-08-14 20:32:32 -04:00
.gitattributes Make sure our frontend compiles with es2019 maximum (#553) 2025-05-07 10:53:35 +02:00
.gitignore Added root node_modules to .gitingore 2025-09-07 18:40:44 +04:00
.iex.exs run formatter 2020-01-10 23:20:19 -05:00
.prettierrc.yml Apply npm run fmt across the entire codebase 2025-03-16 23:26:36 +00:00
.sobelow-conf add and configure sobelow 2021-04-01 12:49:41 -04:00
.typos.toml review fixes, fix warnings, fix spellcheck error, use assoc 2025-11-06 13:26:02 +01:00
docker-compose.yml Devcontainer Setup v2 (#644) 2025-11-19 10:06:57 +01:00
LICENSE add totp & registration freeze 2019-08-17 18:06:11 -04:00
mix.exs update packages 2025-10-21 00:01:00 +02:00
mix.lock bump all dependencies 2025-11-18 11:59:03 +01:00
package-lock.json update prettier (fixes vuln warning) 2025-12-02 12:19:57 +01:00
package.json update prettier (fixes vuln warning) 2025-12-02 12:19:57 +01:00
README.md Devcontainer Setup v2 (#644) 2025-11-19 10:06:57 +01:00
rust-toolchain.toml Devcontainer Setup v2 (#644) 2025-11-19 10:06:57 +01:00

Philomena

Philomena

Getting Started

Make sure you have Docker and Docker Compose plugin installed.

You can open this repo via a devcontainer in VSCode, JetBrains, GitHub Codespaces or any other supported IDE. This setup is the recommended way to develop and this way it's guaranteed everyone uses the same dev configs and dependencies.

If you can't/don't want to use devcontainers, then go through the .devcontainer/Dockerfile to see what dependencies/configurations you need to set up on your host machine.

Dev Stack

Use the following commands to bring up or shut down the dev stack.

philomena up
philomena down

Once the application has started, navigate to http://localhost:8080 and log in with

Credential Value
Email admin@example.com
Password philomena123

Tip

See the source code of scripts/philomena.sh for details on the additional parameters and other subcommands.

Devcontainer Specifics

The devcontainer is configured with the docker-compose.yml. The IDE attaches to the app service of the stack. You can use docker compose to manage the stack but be careful not to shutdown the app service. Use philomena commands instead that make sure the app service is always running.

If you are developing on a remote SSH host, then make sure to configure port forwarding for web:80 (yes, use the host:port notation) to be able to access the application in your browser.

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 OpenSearch 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)