_ __ ___ ___ __ _
| '_ ` _ \ / _ \ / _` |
| | | | | | (_) | (_| |
|_| |_| |_|\___/ \__,_|
┌──────────────┐ ╔══════════════╗ ┌──────────────┐
│ Instagram │────▶║ moa.party ║◀────▶│ Twitter │
└──────────────┘ ╚══════════════╝ └──────────────┘
▲
│
▼
┌──────────────┐
│ Mastodon │
└──────────────┘
A Mastodon <-> Twitter Cross-poster
Moa is a flask app and can be run with python
or proxied behind something like nginx/passenger.
- clone it
- On Debian/Ubuntu you'll need to
apt install python-dev python3-dev build-essential
- make a virtual environment
python3 -m venv .moa-venv
- activate
source .moa-venv/bin/activate
pip install --upgrade setuptools wheel
pip install -r requirements.txt
cp config.py.sample config.py
and override the settings fromdefaults.py
MOA_CONFIG=config.DevelopmentConfig python -m moa.models
to create the DB tablesMOA_CONFIG=config.DevelopmentConfig
python app.py- run the worker with
MOA_CONFIG=DevelopmentConfig python -m moa.worker
- preserves image alt text
- handles boosts/retweets
Some code lifted from https://github.com/halcy/MastodonToTwitter
server {
listen 80;
server_name moa.party;
return 301 https://$server_name$request_uri;
}
server {
listen 443 ;
server_name moa.party;
# SSL
ssl on;
ssl_certificate /etc/certificates/moa.crt;
ssl_certificate_key /etc/certificates/moa.key;
client_max_body_size 1G;
access_log /var/www/moa/logs/access.log;
error_log /var/www/moa/logs/error.log;
location = /favicon.ico { log_not_found off; access_log off; }
location = /robots.txt { log_not_found off; access_log off; }
passenger_enabled on;
passenger_app_env production;
passenger_python /var/www/moa/.moa-venv/bin/python3;
passenger_env_var MOA_CONFIG config.ProductionConfig;
root /var/www/moa/public;
}