Skip to content

Latest commit

 

History

History
17 lines (13 loc) · 925 Bytes

README.md

File metadata and controls

17 lines (13 loc) · 925 Bytes

brokencameraphone

A cool game. Play it at https://whisperingcameraphone.com.

Local setup for development

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.

  1. (Make sure you have Python 3.11 and sqlite3 installed)
  2. Clone this repository: git clone https://github.com/zac-garby/brokencameraphone
  3. Go to the dev subdirectory: cd <path where you downloaded it>
  4. Set up a virtual environment python3 -m venv .venv and activate it source .venv/bin/activate
  5. Install the library: python3 -m pip install .
  6. Set up the database: sqlite3 instance/bcp.sqlite < schema.sql
  7. Run the Flask server: python3 -m flask --app brokencameraphone/app.py run --debug --port 5001
  8. You should now be able to go to http://localhost:5001!