├── .gitignore └── README.md /.gitignore: -------------------------------------------------------------------------------- 1 | # See https://help.github.com/articles/ignoring-files for more about ignoring files. 2 | # 3 | # If you find yourself ignoring temporary files generated by your text editor 4 | # or operating system, you probably want to add a global ignore instead: 5 | # git config --global core.excludesfile '~/.gitignore_global' 6 | 7 | # Ignore bundler config and downloaded libraries. 8 | /.bundle 9 | /vendor/bundle 10 | 11 | # Ignore the default SQLite database. 12 | /db/*.sqlite3 13 | /db/*.sqlite3-journal 14 | 15 | # Ignore all logfiles and tempfiles. 16 | .eslintcache 17 | /log/* 18 | !/log/.keep 19 | /tmp 20 | coverage 21 | public/system 22 | public/assets 23 | public/packs 24 | public/packs-test 25 | .env 26 | .env.production 27 | .env.development 28 | node_modules/ 29 | build/ 30 | 31 | # Ignore Vagrant files 32 | .vagrant/ 33 | 34 | # Ignore Capistrano customizations 35 | config/deploy/* 36 | 37 | # Ignore IDE files 38 | .vscode/ 39 | .idea/ 40 | 41 | # Ignore postgres + redis + elasticsearch volume optionally created by docker-compose 42 | postgres 43 | redis 44 | elasticsearch 45 | 46 | # Ignore Apple files 47 | .DS_Store 48 | 49 | # Ignore vim files 50 | *~ 51 | *.swp 52 | 53 | # Ignore npm debug log 54 | npm-debug.log 55 | 56 | # Ignore yarn log files 57 | yarn-error.log 58 | yarn-debug.log 59 | 60 | # Ignore vagrant log files 61 | ubuntu-xenial-16.04-cloudimg-console.log 62 | 63 | # Ignore Docker option files 64 | docker-compose.override.yml 65 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | Deprecated, use https://pleroma.social/ 2 | 3 | It has all the features mastodo had and many more. 4 | 5 | It also is a better implementation, allowing you 6 | to throw less hardware at the same user capacity. 7 | 8 | --------------------------------------------------------------------------------