Skip to content

Commit

Permalink
Add installation docs page.
Browse files Browse the repository at this point in the history
  • Loading branch information
tim-schilling authored Apr 29, 2024
1 parent 5ccac12 commit d63c880
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions docs/installation.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
# Installation

This section explains how to install `django-commons-playground` to use within
your project. It assumes you have a working installation of Python 3.

1. Create venv/virtualenv (`python -m venv venv`)
2. Activate venv/virtualenv (`source venv/bin/activate`)
3. Install `django-commons-playground` (`pip install django-commons-playground`)

All together now:

```shell
python -m venv venv
source venv/bin/activate
pip install django-commons-playground
```

0 comments on commit d63c880

Please sign in to comment.