Skip to content

Commit

Permalink
switch build to dev mode
Browse files Browse the repository at this point in the history
  • Loading branch information
maany committed Sep 10, 2024
1 parent aeecfce commit 2dc6095
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 5 deletions.
3 changes: 1 addition & 2 deletions dist/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -63,15 +63,14 @@ docker run -d --name websat-planckster \
-e HTTPD_ENABLE_SSL=False \
-e PRIMARY_USER_USERNAME=admin \
-e PRIMARY_USER_PASSWORD=admin \
-e SECONDARY_USER_USERNAME=guest \
-e SECONDARY_USER_PASSWORD=guest \
-e NEXTAUTH_SECRET="secret-1239899*@$%" \
-e NEXTAUTH_URL=http://0.0.0.0:80 \
-e HTTPD_ENABLE_LOGS=True \
-e KP_HOST=http://0.0.0.0:8000 \
-e KP_AUTH_TOKEN=test123 \
-e KP_CLIENT_ID=1 \
-p 80:80 -p 443:443 \
-p 3000:3000 \
maany/websat-planckster
```

Expand Down
4 changes: 2 additions & 2 deletions dist/ecosystem.config.js.j2
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ module.exports = {
apps: [
{
name: "websat-planckster",
script: "npm run dev",
script: "npm install && npm run dev",
env: {
NODE_ENV: "production",
NODE_ENV: "development",
PRIMARY_USER_USERNAME: "{{ PRIMARY_USER_USERNAME }}",
PRIMARY_USER_PASSWORD: "{{ PRIMARY_USER_PASSWORD }}",
NEXTAUTH_SECRET: "{{ NEXTAUTH_SECRET }}",
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "websat-planckster",
"version": "2.0.0-rc.1",
"version": "2.0.0-rc.2",
"private": true,
"type": "module",
"scripts": {
Expand Down

0 comments on commit 2dc6095

Please sign in to comment.