Add installation to README.md
All checks were successful
ci/woodpecker/push/package-deploy Pipeline was successful
All checks were successful
ci/woodpecker/push/package-deploy Pipeline was successful
This commit is contained in:
parent
f9e04b1dbc
commit
e1767f6f1f
1 changed files with 14 additions and 1 deletions
15
README.md
15
README.md
|
@ -9,5 +9,18 @@ DNScode is a project to help simplify DNS zone management, when using plain text
|
||||||
files with Python, allowing for more flexability, compared to other DNS as code solutions.
|
files with Python, allowing for more flexability, compared to other DNS as code solutions.
|
||||||
|
|
||||||
## Installation
|
## Installation
|
||||||
|
``` bash
|
||||||
|
# Create working directory
|
||||||
|
mkdir dnsproject
|
||||||
|
cd dnsproject
|
||||||
|
|
||||||
DNSCode is a single Python3 script, with very few dependencies, intented to be used as a module inside of another script. Just drop main.py into your project
|
# Create virtual envrionment (optional, but highly recomended)
|
||||||
|
python3 -m venv .venv
|
||||||
|
source .venv/bin/activate
|
||||||
|
|
||||||
|
# Install the dnscode package
|
||||||
|
pip install dnscode
|
||||||
|
```
|
||||||
|
|
||||||
|
## Usage
|
||||||
|
Todo
|
Loading…
Add table
Reference in a new issue