A textboard written in Perl https://posttext.pl
Go to file
2022-11-03 14:10:43 -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 Remove old per_page method; require v5.34 instead of v5.36 for now 2022-11-03 14:10:43 -04:00
migrations Rename bump_count to bump_tally 2022-10-18 20:31:07 -04:00
script Remove old per_page method; require v5.34 instead of v5.36 for now 2022-11-03 14:10:43 -04:00
t Implement flag button 2022-10-13 23:57:58 -04:00
templates Rename bump_count to bump_tally 2022-10-18 20:31:07 -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 use Authen::Passphrase::BlowfishCrypt instead of bcrypt plugin; implement Moderator model 2022-10-23 14:30:43 -04:00
example_post_text.conf Configurable bcrypt_cost, added TODO 2022-10-19 13:59:57 -04:00
LICENSE Initial commit 2022-07-22 17:22:23 -04:00
README.md Use subroutine for attribute rather than blessed hash reference value 2022-11-03 14:03:48 -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. s/Authen::Passphrase::BlowfishCrypt/Crypt::Passphrase/g
  2. Need to pass config to the Moderator model for bcrypt cost
  3. Re-write bcrypt command to use Authen::Passphrase::BlowfishCrypt
  4. Some sort of admin/moderator login and view
  5. Implement tripcodes
  6. 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?