╔═╣ ASCII.chan ╠═══════════════════════════════════════════════════════════════╗
║ ║
║ Text-based anonymous forum with retro aesthetics. ║
║ Old computers, console applications, demo scene and ASCII art. ║
║ ║
╚══════════════════════════════════════════════════════════════════════════════╝
Warning! This project uses PHP built-in server for running the forum. If you for some reason want to run it in production, please consider using a real web server.
- Clone the repository:
$ git clone https://github.com/torunar/achii-chan.git $ cd ascii-chan
- Run it in development mode:
$ docker build -t ascii-chan . $ docker run -d --name=ascii-chan --rm -v $(pwd)/data/storage/:/srv/data/storage -p 8080:8080 ascii-chan
- Access ASCII.chan:
$ open https://0.0.0.0:8080
$ composer manage
Runs interactive PHP shell where you can use the following functions to manage the forum:
createBoard(string $slug, string $displayName)
— creates a board with a specified slug and display name.removeBoard(string $slug)
— removes a board with a specified slug.removeThread(int $id)
— removes thread with a specified ID.