BBJ: Difference between revisions

From Tildeverse Wiki
No edit summary
No edit summary
 
(One intermediate revision by the same user not shown)
Line 13: Line 13:
# Run the client: <code>python3 clients/urwid/main.py --host bbj.tildeverse.org</code>
# Run the client: <code>python3 clients/urwid/main.py --host bbj.tildeverse.org</code>


Save that as an alias or use this script:
Save that as an alias or use this shell script from somewhere on your <code>PATH</code>:
  #!/bin/sh
  #!/bin/sh
exec python3 /path/to/bbj/clients/urwid/main.py --host bbj.tildeverse.org
[[Category:Projects]]
[[Category:Projects]]
[[Category:Services]]

Latest revision as of 00:59, 19 June 2021

BBJ is a trivial collection of python scripts and database queries that miraculously shit out a fully functional, text-driven community bulletin board. Requires Python 3.4 and up for the server and the official TUI client (clients/urwid/).

Links

Connect to our BBJ

  1. Clone the source code: git clone https://tildegit.org/bbj/bbj
  2. Install deps: apt install python3-cherrypy3 python3-urwid
  3. Run the client: python3 clients/urwid/main.py --host bbj.tildeverse.org

Save that as an alias or use this shell script from somewhere on your PATH:

#!/bin/sh
exec python3 /path/to/bbj/clients/urwid/main.py --host bbj.tildeverse.org