A cool game. Play it at https://whisperingcameraphone.com.
If you want to help with the development of wcp, or just self-host your own copy of it, that should be pretty easy. But let me know if you have any issues.
- (Make sure you have Python 3.11 and sqlite3 installed)
- Clone this repository:
git clone https://github.com/zac-garby/brokencameraphone
- Go to the dev subdirectory:
cd <path where you downloaded it>
- Set up a virtual environment
python3 -m venv .venv
and activate itsource .venv/bin/activate
- Install the library:
python3 -m pip install .
- Set up the database:
sqlite3 instance/bcp.sqlite < schema.sql
- Run the Flask server:
python3 -m flask --app brokencameraphone/app.py run --debug --port 5001
- You should now be able to go to http://localhost:5001!