This commit is contained in:
Rodney, Tiara 2025-05-17 20:22:48 +02:00 committed by Tiara Rodney
commit 4cbe50253a
No known key found for this signature in database
GPG key ID: 5F43FAB4FBE5B5EB
36 changed files with 4073 additions and 0 deletions

34
README.md Normal file
View file

@ -0,0 +1,34 @@
## Installation
You must either provide a `pipenv` command system-wide, or bootstrap the build
environment manually.
### Bootstrap Development Environment
### via Pipenv
```sh
$> python3 -m pipenv install -d
```
### via pip
```sh
$> python3 -m pip install -r requirements-dev.txt
```
### via venv
```sh
$> python3 -m venv .venv
```
```sh
$> .venv/bin/python3 -m pip install -r requirements-dev.txt
```
```sh
$> python3 -m pipenv run sh ./configure
```