akkoma/docs/docs/development/setting_up_akkoma_dev.md

4.3 KiB

Setting up a Akkoma development environment

Akkoma requires some adjustments from the defaults for running the instance locally. The following should help you to get started.

Installing

  1. Install Akkoma as explained in the docs, with some exceptions:
    • You can use your own fork of the repository and add akkoma as a remote git remote add akkoma 'https://akkoma.dev/AkkomaGang/akkoma.git'
    • You can skip systemd and nginx and all that stuff
    • No need to create a dedicated akkoma user, it's easier to just use your own user
    • For the DB you can still choose a dedicated user, the mix tasks set it up for you so it's no extra work for you
    • For domain you can use localhost
    • instead of creating a prod.secret.exs, create dev.secret.exs
    • No need to prefix with MIX_ENV=prod. We're using dev and that's the default MIX_ENV
  2. Change the dev.secret.exs
    • Change the scheme in config :pleroma, Pleroma.Web.Endpoint to http (see examples below)
    • If you want to change other settings, you can do that too
  3. You can now start the server mix phx.server. Once it's build and started, you can access the instance on http://<host>:<port> (e.g.http://localhost:4000 ) and should be able to do everything locally you normaly can.

Example config to change the scheme to http. Change the port if you want to run on another port.

  config :pleroma, Pleroma.Web.Endpoint,
   url: [host: "localhost", scheme: "http", port: 4000],

Example config to disable captcha. This makes it a bit easier to create test-users.

config :pleroma, Pleroma.Captcha,
  enabled: false

Example config to change the log level to info

config :logger, :console,
  # :debug :info :warning :error
  level: :info

Testing with HTTPS

If you end up developing alongside other software like misskey, you will not be able to federate without an SSL certificate. You should be able to use the snakeoil certificate that comes standard with most distributions or generate one from scratch, then force elixir to accept it.

HTTP clients are none too keen to accept self-signed certs, but we can do this:

config :pleroma, :http,
  adapter: [
    pools: %{
      default: [
        conn_opts: [
          transport_opts: [
            verify: :verify_none
          ]
        ]
      ]
    }
  ]

Now your SSL requests will work. Hooray.

Testing

  1. Create a test.secret.exs file with the content as shown below
  2. Create the database user and test database.
    1. You can use the config/setup_db.psql as a template. Copy the file if you want and change the database name, user and password to the values for the test-database (e.g. 'akkoma_local_test' for database and user). Then run this file like you did during installation.
    2. The tests will try to create the Database, so we'll have to allow our test-database user to create databases, sudo -Hu postgres psql -c "ALTER USER akkoma_local_test WITH CREATEDB;"
  3. Run the tests with mix test. The tests should succeed.

Example content for the test.secret.exs file. Feel free to use another user, database name or password, just make sure the database is dedicated for the testing environment.

# Akkoma test configuration

# NOTE: This file should not be committed to a repo or otherwise made public
# without removing sensitive information.

import Config

config :pleroma, Pleroma.Repo,
  username: "akkoma_local_test",
  password: "mysuperduperpassword",
  database: "akkoma_local_test",
  hostname: "localhost"

Updating

Update Akkoma as explained in the docs. Just make sure you pull from upstream and not from your own fork.

Working on multiple branches

If you develop on a separate branch, it's possible you did migrations that aren't merged into another branch you're working on. If you have multiple things you're working on, it's probably best to set up multiple Akkoma instances each with their own database. If you finished with a branch and want to switch back to develop to start a new branch from there, you can drop the database and recreate the database (e.g. by using config/setup_db.psql). The commands to drop and recreate the database can be found in the docs.