mirror of
https://github.com/inventree/InvenTree
synced 2024-08-30 18:33:04 +00:00
2dae60292e
* fix usage of InvenTree name * small typo fix * rename notification plugin all builtins should be named inventree...
15 lines
249 B
Bash
Executable File
15 lines
249 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# create folders
|
|
mkdir -p /workspaces/InvenTree/dev/{commandhistory,plugins}
|
|
cd /workspaces/InvenTree
|
|
|
|
# create venv
|
|
python3 -m venv dev/venv
|
|
. dev/venv/bin/activate
|
|
|
|
# setup InvenTree server
|
|
pip install invoke
|
|
inv update
|
|
inv setup-dev
|