# BuildYourOwnLisp **Repository Path**: nanbowang/BuildYourOwnLisp ## Basic Information - **Project Name**: BuildYourOwnLisp - **Description**: Learn C and build your own programming language in under 1000 lines of code! - **Primary Language**: HTML - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-02-22 - **Last Updated**: 2022-04-19 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README Build your own Lisp =================== http://buildyourownlisp.com About ----- This is the HTML and website code for the book of the above title. Corrections / Edits / Contributions Welcome `contact@theorangeduck.com` Licensed under Creative Commons Attribution-NonCommercial-ShareAlike 3.0 http://creativecommons.org/licenses/by-nc-sa/3.0/ Running ------- You can't just browse the raw HTML files of the site. The links wont work, and it wont have a proper header or footer. If you want to run this website locally, you should install Flask and run the website as follows. ``` pip install Flask pip install Flask-Mail python lispy.py ``` You can specify port via `$PORT`. ``` env PORT=5000 python lispy.py ``` This will serve the site locally at `http://127.0.0.1:5000/`. You can browse it from there.