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
- Clone the source code:
git clone https://tildegit.org/bbj/bbj
- Install deps:
apt install python3-cherrypy3 python3-urwid
- 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