Development: fix devcontainer postCreateCommand (#8542)

This commit is contained in:
Orce MARINKOVSKI 2024-12-25 09:53:30 +01:00 committed by GitHub
parent 3520a83c2f
commit b5a1dc86a5
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 2 additions and 2 deletions

View File

@ -3,7 +3,7 @@
"dockerComposeFile": "docker-compose.devcontainer.sqlite-tika.yml",
"service": "paperless-development",
"workspaceFolder": "/usr/src/paperless/paperless-ngx",
"postCreateCommand": "/bin/bash -c pre-commit install && pipenv install --dev",
"postCreateCommand": "pipenv install --dev && pipenv run pre-commit install && pipenv shell",
"customizations": {
"vscode": {
"extensions": [

View File

@ -3,7 +3,7 @@
"version": "0.0.0",
"scripts": {
"ng": "ng",
"start": "ng serve",
"start": "ng serve --host 0.0.0.0",
"build": "ng build",
"test": "ng test --no-watch --coverage",
"lint": "ng lint",