diff options
author | lonkaars <l.leblansch@gmail.com> | 2021-01-09 17:23:03 +0100 |
---|---|---|
committer | lonkaars <l.leblansch@gmail.com> | 2021-01-09 17:23:03 +0100 |
commit | b66d8444041598cd408c35c2206746e84754b651 (patch) | |
tree | bbb9f34a4f7d96e87d48fef2d554ae1bb0c25626 | |
parent | 7fd3163ffc94abe1db3d6ebe78855ca050ec79ce (diff) |
./configure toegevoegd
-rwxr-xr-x | configure | 6 | ||||
-rw-r--r-- | readme.md | 7 |
2 files changed, 13 insertions, 0 deletions
diff --git a/configure b/configure new file mode 100755 index 0000000..339b91d --- /dev/null +++ b/configure @@ -0,0 +1,6 @@ +npm i -g typescript yarn +python -m venv venv +source venv/bin/activate +pip install -r requirements.txt +yarn + @@ -42,6 +42,13 @@ Een voorbeeld van de database is te vinden op [Google Docs](https://docs.google. 4. Maak een python virtual environment en installeer pip modules: ```sh python -m venv venv + + # windows / powershell + .\venv\Scripts\Activate.ps1 + + # linux / posix + source venv/bin/activate + pip install -r requirements.txt ``` 5. Installeer node modules: |