From d731ecae4412635eb036291154bfee42d4166562 Mon Sep 17 00:00:00 2001 From: maike Date: Sun, 6 Sep 2020 20:40:57 +0200 Subject: [PATCH] [doc] Make test cycle a subpoint of backend --- CONTRIBUTING.md | 16 ++++++++-------- package-lock.json | 3 +++ 2 files changed, 11 insertions(+), 8 deletions(-) create mode 100644 package-lock.json diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 1ff8389..af2ff60 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -14,6 +14,14 @@ 7. Add git-hook to check commmit message format with `ln -s ../../git-hooks/commit-msg .git/hooks/commit-msg` +#### Build and Test Cycle + +- Install with `pip install .` +- Execute with `kibicara` +- Interact with Swagger REST-API Documentation: http://localhost:8000/docs +- Test and stylecheck with `tox` +- Fix style issues with `black -S kibicara tests` + ### Frontend 1. Install node.js (e.g. via @@ -26,14 +34,6 @@ 7. To serve and open the application, run ng s -o. The application will open under [http://127.0.0.1:4200](http://127.0.0.1:4200). -### Build and Test Cycle - -- Install with `pip install .` -- Execute with `kibicara` -- Interact with Swagger REST-API Documentation: http://localhost:8000/docs -- Test and stylecheck with `tox` -- Fix style issues with `black -S kibicara tests` - ## Branches - **Master:** The master branch tracks the last stable release. diff --git a/package-lock.json b/package-lock.json new file mode 100644 index 0000000..48e341a --- /dev/null +++ b/package-lock.json @@ -0,0 +1,3 @@ +{ + "lockfileVersion": 1 +}