diff --git a/README.md b/README.md index df20cf0b..4a320c81 100644 --- a/README.md +++ b/README.md @@ -1 +1,30 @@ - +# OpenScienceLabs Web Page + +## Setup + +Create a new `conda` environment: + +```bash +$ mamba env create --file conda/dev.yaml --force +``` + +> You can use mamba or conda when creating a new environment. + + +Activate your environment: + +```bash +$ conda activate osl +``` + +Install dependencies with `poetry`: + +```bash +$ poetry install +``` + +Build and start a simple web server locally: + +```bash +$ make watch +``` diff --git a/conda/dev.yaml b/conda/dev.yaml index e0b5cd92..31c54529 100644 --- a/conda/dev.yaml +++ b/conda/dev.yaml @@ -6,3 +6,4 @@ dependencies: - python - poetry - nodejs + - make