2
0
mirror of https://github.com/inventree/InvenTree.git synced 2025-06-17 12:35:46 +00:00
Files
.devcontainer
Dockerfile
devcontainer.json
postCreateCommand.sh
.github
.vscode
InvenTree
ci
contrib
deploy
docker
images
.eslintrc.yml
.gitattributes
.gitignore
.gitpod.yml
.pkgr.yml
.pre-commit-config.yaml
CONTRIBUTING.md
Dockerfile
LICENSE
Procfile
README.md
RELEASE.md
SECURITY.md
crowdin.yml
docker-compose.yml
docker.dev.env
package-lock.json
package.json
requirements-dev.in
requirements-dev.txt
requirements.in
requirements.txt
runtime.txt
setup.cfg
tasks.py
InvenTree/.devcontainer/postCreateCommand.sh
Matthias Mair 2dae60292e Fix typos/naming ()
* fix usage of InvenTree name

* small typo fix

* rename notification plugin
all builtins should be named inventree...
2023-01-25 09:29:50 +11:00

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