Skip to content
This repository was archived by the owner on Aug 24, 2021. It is now read-only.

Latest commit

 

History

History
17 lines (15 loc) · 484 Bytes

README.md

File metadata and controls

17 lines (15 loc) · 484 Bytes

tryhy

Hy repl running on App Engine.

hacking

git clone https://github.com/hylang/tryhy.git
cd tryhy
python3 -m venv env
env/bin/python -m pip install setuptools pip wheel --upgrade
env/bin/python -m pip install -r requirements.txt
# try locally
FLASK_APP=main.py SERVER_SOFTWARE=dev env/bin/flask run
# deploy
gcloud app deploy --no-promote --project try-hy --version $(git rev-parse --short HEAD) .