A textboard written in Perl https://posttext.pl
Go to file
2022-10-14 00:04:17 -04:00
assets Implement the rest of the stuff for bumps; then some clean up along the way 2022-10-08 01:58:18 -04:00
lib Implement flag button 2022-10-13 23:57:58 -04:00
migrations Implement migration for bump 2022-10-08 00:42:31 -04:00
script Use 5.36 2022-10-05 21:39:00 -04:00
t Implement flag button 2022-10-13 23:57:58 -04:00
templates Lil tweaky tweak 2022-10-14 00:04:17 -04:00
.gitignore Hybrid time 2022-09-15 19:14:40 -04:00
.perlcriticrc Configure perlcritic 2022-10-05 00:58:14 -04:00
AUTHORS Put some files in place for later; implement a basic Mojolicious::Lite app 2022-07-22 18:37:31 -04:00
cpanfile Implement AssetPack 2022-08-15 18:35:30 -04:00
example_post_text.conf Document post_text.conf 2022-10-01 22:43:40 -04:00
LICENSE Initial commit 2022-07-22 17:22:23 -04:00
README.md Implement flag button 2022-10-13 23:57:58 -04:00

Post::Text

A textboard written in Perl

Installing locally

Install dependencies:

cpanm --installdeps .

Running locally

Create a config file:

cp example_post_text.conf post_text.conf

This file right now just contains a Perl hash reference. Someday it should be YAML or XML or something better suited.

Run it in development mode:

morbo -w assets/css/ -w lib/ -w migrations/ -w t/ -w templates/ \
    script/post_text

Now try requesting http://localhost:3000

Testing

Run the tests locally (against development environment):

prove -l

TODOs

  1. Implement bcrypt
  2. Some sort of admin/moderator login and view
  3. CSS

Crazy future ideas

(Lord knows there's TODOs I could be working on...)

  1. Support at least some Markdown, specifically the code blocks
  2. RSS feed!!
  3. Return a text response instead of HTML if a .txt extension is requested (JSON?)
  4. Post thread via SMS (twil.io??)
  5. Option to remark without bumping?