From 6bb0190dd1ce74625e52bb1b793d7cb8c5039171 Mon Sep 17 00:00:00 2001 From: "Kyle M. Kovary" Date: Sun, 11 Dec 2022 00:04:22 -0800 Subject: [PATCH] Include information about creating a local build (#59) * included information about creating a local build * included a link to poetry docs, create local build using poetry --- CONTRIBUTING.md | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 7e7ee17d3..49422ad8f 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -35,6 +35,13 @@ Navigate into the repo: cd pynecone ``` +Install poetry and add it to your path (see [Poetry Docs](https://python-poetry.org/docs/#installation) for more info). + +Install your local Pynecone build: +``` +poetry install +``` + Now create an examples folder so you can test the local Python build in this repository: ``` mkdir examples