Giter Club home page Giter Club logo

stelle's Introduction

OCamlot - An OCaml Activitypub Server

OCamlot is an activitypub server written in OCaml!

As with most non-mainstream activitypub servers, it's currently in very experimental status!

Features:

  • Creating posts
  • Replying to posts
  • Custom profiles
  • Liking posts (we call them toasts)
  • Reboosting posts (we call them cheers)
  • Replying to posts

Screenshot:

screenshot.png

You can see a running instance of the server at ocamlot.xyz!

Deploying OCamlot

The rest of this guide will be assuming that you have a server with OCaml installed, and nginx, setup with letsencrypt, such that an appropriate internal port is accessible via a public domain.

Your nginx config may look something like as follows (using PORT 7331 and DOMAIN ocamlot.xyz):

server {
    server_name ocamlot.xyz;

    listen 443 ssl; # managed by Certbot

    location / {
        proxy_pass http://localhost:7331;
    }
    ssl_certificate /etc/letsencrypt/live/ocamlot.xyz/fullchain.pem; # managed by Certbot
    ssl_certificate_key /etc/letsencrypt/live/ocamlot.xyz/privkey.pem; # managed by Certbot
    include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot
    ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot
}

server {
    if ($host = ocamlot.xyz) {
        return 301 https://$host$request_uri;
   } # managed by Certbot

   listen 80 default_server;
   listen [::]:80 default_server;

   return 404; # managed by Certbot
}

To deploy the server, do the following:

  1. Create a new user to run the ocamlot process
$ sudo useradd -r -s /bin/false -m -d /var/lib/ocamlot -U ocamlot
  1. Create a new postgres user and database:
$ sudo -Hu postgres psql

postgres=# CREATE ROLE ocamlot WITH password = '<password>';
CREATE ROLE

postgres=# ALTER ROLE ocamlot WITH login;
ALTER ROLE

postgres=# CREATE DATABASE ocamlot WITH OWNER ocamlot;
CREATE DATABASE
  1. Clone the development repository:
$ sudo mkdir -p /opt/ocamlot
$ sudo chown -R ocamlot:ocamlot /opt/ocamlot
$ sudo -Hu ocamlot git clone https://codeberg.org/gopiandcode/ocamlot /opt/ocamlot
  1. Switch user to the ocamlot user:
$ sudo -Hu ocamlot bash
  1. Setup opam:
$ opam init

$ eval $(opam env)

$ opam update
  1. Install dev dependencies:
$ cd /var/lib/ocamlot

$ git clone https://github.com/gopiandcode/petrol

$ cd ./petrol

$ opam pin .
  1. Build the project
$ cd /opt/ocamlot

$ opam update && opam install --deps-only .

$ dune build
  1. Modify ./scripts/run.sh with domain and port:
# file: ./scripts/run.sh

#!/bin/bash
/opt/ocamlot/_build/default/bin/main.exe -u 'ocamlot:<password>@localhost:5432' -d "ocamlot.xyz" -p 7331 -D
  1. Create an account via the web UI, with username <username>

  2. Promote user <username> to admin

/opt/ocamlot/_build/default/bin/main.exe -u 'ocamlot:<password>@localhost:5432' -d "ocamlot.xyz" --promote-to-admin=<username>
  1. Copy over ./scripts/ocamlot.service to etc/systemd/system/ocamlot.service:
sudo cp /opt/ocamlot/scripts/ocamlot.service /etc/systemd/system/ocamlot.service
  1. Enable and start ocamlot.service:
sudo systemctl enable --now ocamlot.service

Development Setup

To develop OCamlot locally, we provide a docker-compose file for setting up a network with a running OCamlot (port 7331) and pleroma (port 4000) instance. The two containers are connected through a network in which the OCamlot server can be found under the domain name testing.ocamlot.xyz and the Pleroma server can be found under the domain name pleroma.ocamlot.xyz. (Note: because there is no easy way of updating the CA store that elixir uses, you will need to patch your local copy of pleroma to disable certification verification for interaction between the two containers to work).

You will need docker-compose and docker

  1. Clone a copy of pleroma to the tests/integration_test/ directory:
git clone -b  v2.5.0 --single-branch https://git.pleroma.social/pleroma/pleroma ./tests/integration_tests/pleroma
  1. Apply patch to pleroma to disable TLS validation (required for local testing)
(cd ./tests/integration_tests/pleroma && git apply ../pleroma.patch)
  1. Change directory into the tests/integration_test/ directory:
cd ./tests/integration_tests/
  1. Run docker-compose build with the local docker-compose file:
docker-compose -f ./docker-compose.local.yml build
  1. Run docker-compose up with the local docker-compose file:
docker-compose -f ./docker-compose.local.yml up

Now pleroma will be available at https://localhost:4000 and ocamlot at https://localhost:7331

  1. (optional), if you want to update the OCamlot server after making some changes locally, do the following:

    • 6.1. Find out the name of the OCamlot server container using docker container list
    • 6.2. Attach to the OCamlot container using docker container exec -it <container-id> bash
    • 6.3. Kill the running OCamlot process using pkill -9 main.exe
    • 6.4. Run eval $(opam env), then dune build then dune exec -- ./bin/main.exe -d testing.ocamlot.xyz -D

stelle's People

Contributors

gopiandcode avatar hannesm avatar mro avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.