From dcf0a9640b044afb8542503b0b0e7b2a7001be37 Mon Sep 17 00:00:00 2001
From: David Trattnig <david@subsquare.at>
Date: Mon, 25 Jul 2022 15:38:02 +0200
Subject: [PATCH] Chore: diff dev and prod requirements #111

---
 docs/bare-metal-installation.md | 29 +++++++++++++++++++----------
 1 file changed, 19 insertions(+), 10 deletions(-)

diff --git a/docs/bare-metal-installation.md b/docs/bare-metal-installation.md
index 86962d85..18534ca5 100644
--- a/docs/bare-metal-installation.md
+++ b/docs/bare-metal-installation.md
@@ -46,16 +46,25 @@ If you are developing engine you also might want the projects `steering`, `dashb
 Install dependencies:
 
 ```shell
-apt install \
-    python3-wheel \
-    python3-flask \
-    python3-flask-sqlalchemy \
-    python3-http-parser \
-    python3-psycopg2 \
-    python3-requests \
-    python3-sqlalchemy \
-    python3-validators \
-    sqlite3
+apt install -y \
+      python3-wheel \
+      python3-flask \
+      python3-flask-sqlalchemy \
+      python3-http-parser \
+      python3-psycopg2 \
+      python3-requests \
+      python3-sqlalchemy
+```
+
+For development install following additional requirements:
+
+```shell
+apt install -y
+      codespell \
+      black \
+      python3-flake8 \
+      python3-flake8-docstrings \
+      python3-validators
 ```
 
 Create your base configuration from the sample configuration
-- 
GitLab