https://github.com/chailotl/petscii
An ASCII adventure about taking care of a mysterious pet!
https://github.com/chailotl/petscii
ascii-game game html5 itch-io
Last synced: 3 months ago
JSON representation
An ASCII adventure about taking care of a mysterious pet!
- Host: GitHub
- URL: https://github.com/chailotl/petscii
- Owner: Chailotl
- License: gpl-3.0
- Created: 2022-01-24T03:14:35.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2022-02-01T22:07:30.000Z (over 3 years ago)
- Last Synced: 2025-02-28T16:05:51.467Z (7 months ago)
- Topics: ascii-game, game, html5, itch-io
- Language: JavaScript
- Homepage: https://chailotl.itch.io/petscii
- Size: 35.2 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# PETSCII
An ASCII adventure about taking care of a mysterious pet!You can play the game on [itch.io](https://chailotl.itch.io/petscii)
# Local Testing
Because Javascript from the browser cannot fetch local files, it is necessary to host a webserver to test locally. Below I have detailed the easiest and fastest way.
Install any version of Python and execute the appropriate command in the project directory:
```bash
# Python 2
python -m SimpleHTTPServer 8000
# Python 3
python -m http.server 8000
```
Then navigate to `127.0.0.1:8000` in your browser.