├── .gitignore ├── .glitch-assets ├── .rnd ├── LICENSE.md ├── README.md ├── app.js ├── bot ├── README.md ├── bot.js ├── responses.js └── script.js ├── examples ├── generative-art-bot │ ├── README.md │ └── script.js ├── replies │ ├── README.md │ └── bot │ │ └── responses.js └── tracery │ ├── README.md │ └── script.js ├── generators └── joy-division.js ├── handlebars-helpers ├── equals.js ├── for.js └── not_equals.js ├── helpers ├── colorbrewer.js ├── cron-schedules.js ├── db.js ├── general.js └── keys.js ├── package.json ├── public ├── humans.txt └── libs │ └── bootstrap │ ├── bootstrap.min.css │ └── bootstrap.min.js ├── robots.txt ├── routes ├── admin.js ├── bot.js ├── delete-post.js ├── feed.js ├── inbox.js ├── index.js ├── outbox.js ├── post.js ├── pubsub.js ├── salmon.js ├── webhook.js └── well-known.js ├── server.js ├── shrinkwrap.yaml ├── src ├── scripts │ └── scripts.js └── styles │ ├── _layout.scss │ ├── _typography.scss │ ├── _variables.scss │ └── styles.scss ├── tracery ├── grammar.json └── tracery.js ├── views ├── 404.handlebars ├── about.handlebars ├── admin.handlebars ├── home.handlebars ├── layouts │ └── main.handlebars ├── partials │ └── header.handlebars ├── post.handlebars └── profile.handlebars └── watch.json /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | sessions 3 | -------------------------------------------------------------------------------- /.glitch-assets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botwiki/fediverse-bot/HEAD/.glitch-assets -------------------------------------------------------------------------------- /.rnd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botwiki/fediverse-bot/HEAD/.rnd -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botwiki/fediverse-bot/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botwiki/fediverse-bot/HEAD/README.md -------------------------------------------------------------------------------- /app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botwiki/fediverse-bot/HEAD/app.js -------------------------------------------------------------------------------- /bot/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botwiki/fediverse-bot/HEAD/bot/README.md -------------------------------------------------------------------------------- /bot/bot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botwiki/fediverse-bot/HEAD/bot/bot.js -------------------------------------------------------------------------------- /bot/responses.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botwiki/fediverse-bot/HEAD/bot/responses.js -------------------------------------------------------------------------------- /bot/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botwiki/fediverse-bot/HEAD/bot/script.js -------------------------------------------------------------------------------- /examples/generative-art-bot/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botwiki/fediverse-bot/HEAD/examples/generative-art-bot/README.md -------------------------------------------------------------------------------- /examples/generative-art-bot/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botwiki/fediverse-bot/HEAD/examples/generative-art-bot/script.js -------------------------------------------------------------------------------- /examples/replies/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botwiki/fediverse-bot/HEAD/examples/replies/README.md -------------------------------------------------------------------------------- /examples/replies/bot/responses.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botwiki/fediverse-bot/HEAD/examples/replies/bot/responses.js -------------------------------------------------------------------------------- /examples/tracery/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botwiki/fediverse-bot/HEAD/examples/tracery/README.md -------------------------------------------------------------------------------- /examples/tracery/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botwiki/fediverse-bot/HEAD/examples/tracery/script.js -------------------------------------------------------------------------------- /generators/joy-division.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botwiki/fediverse-bot/HEAD/generators/joy-division.js -------------------------------------------------------------------------------- /handlebars-helpers/equals.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botwiki/fediverse-bot/HEAD/handlebars-helpers/equals.js -------------------------------------------------------------------------------- /handlebars-helpers/for.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botwiki/fediverse-bot/HEAD/handlebars-helpers/for.js -------------------------------------------------------------------------------- /handlebars-helpers/not_equals.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botwiki/fediverse-bot/HEAD/handlebars-helpers/not_equals.js -------------------------------------------------------------------------------- /helpers/colorbrewer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botwiki/fediverse-bot/HEAD/helpers/colorbrewer.js -------------------------------------------------------------------------------- /helpers/cron-schedules.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botwiki/fediverse-bot/HEAD/helpers/cron-schedules.js -------------------------------------------------------------------------------- /helpers/db.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botwiki/fediverse-bot/HEAD/helpers/db.js -------------------------------------------------------------------------------- /helpers/general.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botwiki/fediverse-bot/HEAD/helpers/general.js -------------------------------------------------------------------------------- /helpers/keys.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botwiki/fediverse-bot/HEAD/helpers/keys.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botwiki/fediverse-bot/HEAD/package.json -------------------------------------------------------------------------------- /public/humans.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botwiki/fediverse-bot/HEAD/public/humans.txt -------------------------------------------------------------------------------- /public/libs/bootstrap/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botwiki/fediverse-bot/HEAD/public/libs/bootstrap/bootstrap.min.css -------------------------------------------------------------------------------- /public/libs/bootstrap/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botwiki/fediverse-bot/HEAD/public/libs/bootstrap/bootstrap.min.js -------------------------------------------------------------------------------- /robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botwiki/fediverse-bot/HEAD/robots.txt -------------------------------------------------------------------------------- /routes/admin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botwiki/fediverse-bot/HEAD/routes/admin.js -------------------------------------------------------------------------------- /routes/bot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botwiki/fediverse-bot/HEAD/routes/bot.js -------------------------------------------------------------------------------- /routes/delete-post.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botwiki/fediverse-bot/HEAD/routes/delete-post.js -------------------------------------------------------------------------------- /routes/feed.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botwiki/fediverse-bot/HEAD/routes/feed.js -------------------------------------------------------------------------------- /routes/inbox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botwiki/fediverse-bot/HEAD/routes/inbox.js -------------------------------------------------------------------------------- /routes/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botwiki/fediverse-bot/HEAD/routes/index.js -------------------------------------------------------------------------------- /routes/outbox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botwiki/fediverse-bot/HEAD/routes/outbox.js -------------------------------------------------------------------------------- /routes/post.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botwiki/fediverse-bot/HEAD/routes/post.js -------------------------------------------------------------------------------- /routes/pubsub.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botwiki/fediverse-bot/HEAD/routes/pubsub.js -------------------------------------------------------------------------------- /routes/salmon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botwiki/fediverse-bot/HEAD/routes/salmon.js -------------------------------------------------------------------------------- /routes/webhook.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botwiki/fediverse-bot/HEAD/routes/webhook.js -------------------------------------------------------------------------------- /routes/well-known.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botwiki/fediverse-bot/HEAD/routes/well-known.js -------------------------------------------------------------------------------- /server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botwiki/fediverse-bot/HEAD/server.js -------------------------------------------------------------------------------- /shrinkwrap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botwiki/fediverse-bot/HEAD/shrinkwrap.yaml -------------------------------------------------------------------------------- /src/scripts/scripts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botwiki/fediverse-bot/HEAD/src/scripts/scripts.js -------------------------------------------------------------------------------- /src/styles/_layout.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botwiki/fediverse-bot/HEAD/src/styles/_layout.scss -------------------------------------------------------------------------------- /src/styles/_typography.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botwiki/fediverse-bot/HEAD/src/styles/_typography.scss -------------------------------------------------------------------------------- /src/styles/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botwiki/fediverse-bot/HEAD/src/styles/_variables.scss -------------------------------------------------------------------------------- /src/styles/styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botwiki/fediverse-bot/HEAD/src/styles/styles.scss -------------------------------------------------------------------------------- /tracery/grammar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botwiki/fediverse-bot/HEAD/tracery/grammar.json -------------------------------------------------------------------------------- /tracery/tracery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botwiki/fediverse-bot/HEAD/tracery/tracery.js -------------------------------------------------------------------------------- /views/404.handlebars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botwiki/fediverse-bot/HEAD/views/404.handlebars -------------------------------------------------------------------------------- /views/about.handlebars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botwiki/fediverse-bot/HEAD/views/about.handlebars -------------------------------------------------------------------------------- /views/admin.handlebars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botwiki/fediverse-bot/HEAD/views/admin.handlebars -------------------------------------------------------------------------------- /views/home.handlebars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botwiki/fediverse-bot/HEAD/views/home.handlebars -------------------------------------------------------------------------------- /views/layouts/main.handlebars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botwiki/fediverse-bot/HEAD/views/layouts/main.handlebars -------------------------------------------------------------------------------- /views/partials/header.handlebars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botwiki/fediverse-bot/HEAD/views/partials/header.handlebars -------------------------------------------------------------------------------- /views/post.handlebars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botwiki/fediverse-bot/HEAD/views/post.handlebars -------------------------------------------------------------------------------- /views/profile.handlebars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botwiki/fediverse-bot/HEAD/views/profile.handlebars -------------------------------------------------------------------------------- /watch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botwiki/fediverse-bot/HEAD/watch.json --------------------------------------------------------------------------------