Skip to content

Commit

Permalink
Merge pull request #18 from choxx/file-upload
Browse files Browse the repository at this point in the history
  • Loading branch information
ChakshuGautam authored Oct 13, 2022
2 parents 84dd401 + 4c51300 commit a9d0a4f
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"build": "turbo run build",
"docker-cleanup": "docker rm -f enketo-redis-main enketo-redis-cache",
"enketo-core": "cd packages/enketo-core && npm i && npm start",
"enketo-express": "cd packages/enketo-express && docker run --name enketo-redis-main -p 6379:6379 -d redis && docker run --name enketo-redis-cache -p 6380:6379 -d redis && npm i && npm i -g grunt && grunt develop",
"enketo-express": "cd packages/enketo-express && docker run --name enketo-redis-main -p 6381:6379 -d redis && docker run --name enketo-redis-cache -p 6382:6379 -d redis && npm i && npm i -g grunt && grunt develop",
"form-manager": "cd packages/form-manager && npm i && npm start",
"wrapper": "cd apps/wrapper && npm i && npm start",
"concurrent-packages": "concurrently \"npm run enketo-core\" \"npm run enketo-express\" \"npm run form-manager\"",
Expand All @@ -16,8 +16,8 @@
"start-redis-cache": "docker run --name enketo-redis-cache -p 6380:6379 -d redis",
"start-redis-main": "docker run --name enketo-redis-main -p 6379:6379 -d redis",
"start-ec": "cd enketo-core && npm start",
"start-ee": "cd enketo-express && grunt develop",
"start-fm": "cd form-manager && npm run start:dev",
"start-ee": "cd packages/enketo-express && grunt develop",
"start-fm": "cd packages/form-manager && npm run start:dev",
"start-web": "cd wrapper && npm start"
},
"workspaces": [
Expand Down
8 changes: 4 additions & 4 deletions packages/enketo-express/config/default-config.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"app name": "Enketo Smart Paper for KoBoCAT",
"port": "8005",
"port": "8065",
"offline enabled": true,
"id length": 8,
"linked form and data server": {
Expand Down Expand Up @@ -91,12 +91,12 @@
"redis": {
"main": {
"host": "0.0.0.0",
"port": "6379",
"port": "6381",
"password": null
},
"cache": {
"host": "0.0.0.0",
"port": "6380",
"port": "6382",
"password": null
}
},
Expand All @@ -110,5 +110,5 @@
"validate page": true,
"payload limit": "100kb",
"text field character limit": 2000,
"formManagerBaseURI": "http://localhost:3002"
"formManagerBaseURI": "https://fm.dst.samagra.io"
}

0 comments on commit a9d0a4f

Please sign in to comment.