├── .gitignore ├── LICENSE ├── README.md ├── command_handlers.py ├── config_init.py ├── db_admin.py ├── db_operations.py ├── docker ├── Dockerfile ├── configini.sh └── docker-compose.yaml ├── example_config.ini ├── examples └── example_RulesOfAcquisition_fortunes.txt ├── fortunes.txt ├── js8call_integration.py ├── mesh-bbs.service ├── message_processing.py ├── requirements.txt ├── server.py └── utils.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCommsChannel/TC2-BBS-mesh/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCommsChannel/TC2-BBS-mesh/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCommsChannel/TC2-BBS-mesh/HEAD/README.md -------------------------------------------------------------------------------- /command_handlers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCommsChannel/TC2-BBS-mesh/HEAD/command_handlers.py -------------------------------------------------------------------------------- /config_init.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCommsChannel/TC2-BBS-mesh/HEAD/config_init.py -------------------------------------------------------------------------------- /db_admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCommsChannel/TC2-BBS-mesh/HEAD/db_admin.py -------------------------------------------------------------------------------- /db_operations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCommsChannel/TC2-BBS-mesh/HEAD/db_operations.py -------------------------------------------------------------------------------- /docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCommsChannel/TC2-BBS-mesh/HEAD/docker/Dockerfile -------------------------------------------------------------------------------- /docker/configini.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCommsChannel/TC2-BBS-mesh/HEAD/docker/configini.sh -------------------------------------------------------------------------------- /docker/docker-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCommsChannel/TC2-BBS-mesh/HEAD/docker/docker-compose.yaml -------------------------------------------------------------------------------- /example_config.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCommsChannel/TC2-BBS-mesh/HEAD/example_config.ini -------------------------------------------------------------------------------- /examples/example_RulesOfAcquisition_fortunes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCommsChannel/TC2-BBS-mesh/HEAD/examples/example_RulesOfAcquisition_fortunes.txt -------------------------------------------------------------------------------- /fortunes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCommsChannel/TC2-BBS-mesh/HEAD/fortunes.txt -------------------------------------------------------------------------------- /js8call_integration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCommsChannel/TC2-BBS-mesh/HEAD/js8call_integration.py -------------------------------------------------------------------------------- /mesh-bbs.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCommsChannel/TC2-BBS-mesh/HEAD/mesh-bbs.service -------------------------------------------------------------------------------- /message_processing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCommsChannel/TC2-BBS-mesh/HEAD/message_processing.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | meshtastic 2 | pypubsub 3 | -------------------------------------------------------------------------------- /server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCommsChannel/TC2-BBS-mesh/HEAD/server.py -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCommsChannel/TC2-BBS-mesh/HEAD/utils.py --------------------------------------------------------------------------------