mirror of
https://github.com/inventree/InvenTree.git
synced 2025-04-30 04:26:44 +00:00
Merge pull request #2206 from matmair/gitpod
Add definition for Gitpod.io
This commit is contained in:
commit
2a58ad97dc
47
.gitpod.yml
Normal file
47
.gitpod.yml
Normal file
@ -0,0 +1,47 @@
|
|||||||
|
tasks:
|
||||||
|
- name: Setup django
|
||||||
|
before: |
|
||||||
|
export INVENTREE_DB_ENGINE='sqlite3'
|
||||||
|
export INVENTREE_DB_NAME='/workspace/InvenTree/dev/database.sqlite3'
|
||||||
|
export INVENTREE_MEDIA_ROOT='/workspace/InvenTree/inventree-data/media'
|
||||||
|
export INVENTREE_STATIC_ROOT='/workspace/InvenTree/dev/static'
|
||||||
|
export PIP_USER='no'
|
||||||
|
|
||||||
|
python3 -m venv venv
|
||||||
|
source venv/bin/activate
|
||||||
|
pip install invoke
|
||||||
|
inv install
|
||||||
|
mkdir dev
|
||||||
|
inv update
|
||||||
|
gp sync-done setup_server
|
||||||
|
|
||||||
|
- name: Start server
|
||||||
|
init: gp sync-await setup_server
|
||||||
|
command: |
|
||||||
|
gp sync-await setup_server
|
||||||
|
export INVENTREE_DB_ENGINE='sqlite3'
|
||||||
|
export INVENTREE_DB_NAME='/workspace/InvenTree/dev/database.sqlite3'
|
||||||
|
export INVENTREE_MEDIA_ROOT='/workspace/InvenTree/inventree-data/media'
|
||||||
|
export INVENTREE_STATIC_ROOT='/workspace/InvenTree/dev/static'
|
||||||
|
|
||||||
|
source venv/bin/activate
|
||||||
|
rm /workspace/InvenTree/inventree-data -r
|
||||||
|
git clone https://github.com/inventree/demo-dataset /workspace/InvenTree/inventree-data
|
||||||
|
invoke delete-data -f
|
||||||
|
invoke import-records -f /workspace/InvenTree/inventree-data/inventree_data.json
|
||||||
|
|
||||||
|
inv server
|
||||||
|
|
||||||
|
# List the ports to expose. Learn more https://www.gitpod.io/docs/config-ports/
|
||||||
|
ports:
|
||||||
|
- port: 8000
|
||||||
|
onOpen: open-preview
|
||||||
|
|
||||||
|
github:
|
||||||
|
prebuilds:
|
||||||
|
master: true
|
||||||
|
pullRequests: false
|
||||||
|
pullRequestsFromForks: true
|
||||||
|
addBadge: true
|
||||||
|
addLabel: gitpod-ready
|
||||||
|
addCheck: false
|
Loading…
x
Reference in New Issue
Block a user