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

hylang/tryhy

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

26 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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) .