From 96e232d2c1c260f60d4f7b0050eba62da9511d84 Mon Sep 17 00:00:00 2001 From: Finn Christiansen Date: Sun, 24 Jan 2021 18:25:19 +0100 Subject: [PATCH] updated readme --- README.md | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/README.md b/README.md index 52771d6..89c594b 100644 --- a/README.md +++ b/README.md @@ -2,6 +2,17 @@ Simple Flask based application to receive impulses via cURL from a power meter. +Clone this repository and create a virtualenv within it: + +``` +git clone https://github.com/Finn10111/powermeter.git +cd powermeter +virtualenv -p /usr/bin/python3 . +# or if python3 is your default: +virtualenv . +pip install -r requirements.txt +``` + For developing run this (you need to create database and user first): ```