mirror of
https://github.com/inventree/InvenTree.git
synced 2025-06-17 12:35:46 +00:00
.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
* 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
|