A textboard written in Perl https://posttext.pl
Go to file
2022-11-28 23:22:25 -05: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 Some clean-up 2022-11-27 23:56:35 -05:00
migrations ... There! 2022-11-19 22:02:44 -05: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 Moar tests 2022-11-28 15:31:56 -05:00
templates Rename layout to default per convention 2022-11-28 23:22:25 -05: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 Argon2 in place of bcrypt, argon2 command instead of bcrypt and Crypt::Passphrase instead of Authen::Passphrase 2022-11-03 15:38:40 -04:00
example_post_text.conf Forget about tripcodes for now, remove some unnecessary things from config 2022-11-03 15:42:06 -04:00
LICENSE Initial commit 2022-07-22 17:22:23 -04:00
README.md Tests for Moderator 2022-11-25 23:22:38 -05: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. Actions for creating moderators and resetting passwords
  2. 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. Implement tripcodes (moving this down in priority due to complexity...)
  4. Return a text response instead of HTML if a .txt extension is requested (JSON?)
  5. Post thread via SMS (twil.io??)
  6. Option to remark without bumping?