A textboard written in Perl https://posttext.pl
Go to file
2022-12-08 14:55:30 -06: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 basic view of flagged posts 2022-12-08 14:54:46 -06: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 Buttons for remark mod stuff 2022-12-08 13:29:55 -06:00
templates Implement basic view of flagged posts 2022-12-08 14:54:46 -06: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 Added TODO 2022-12-08 14:55:30 -06: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. Tests for flagged view? Not much to it but got pulled into work stuff
  2. View for hidden posts
  3. Actions for creating moderators and resetting passwords
  4. 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?