You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Nov 17, 2021. It is now read-only.
Gave up on trying to run the packaged version. Moved on to attempt the Run Standalone guide. Got it running with some minor tweaks. Here are the commands I used to get SARCAT running in standalone:
nave use 0.10.36
# to install npm in that virtualenv
curl https://www.npmjs.org/install.sh | sh
cd ~/SARCAT
npm run build
# already had mongodb in home directory from previous attempt
mongod --dbpath ~/sarcatData/sarcatdb --port 27017
cd dist/app
export MONGO_URL=mongodb://localhost:27017/sarcatdb
export PORT=3000
export ROOT_URL=http://localhost/
export METEOR_SETTINGS=$(<settings.json)
# node bundle/main.js (failed, main.js doesn't exist there)
cd ~/SARCAT/dist/sarcat-0.5.0-os.linux.x86_64/app
# node bundle/main.js (failed, error from bcrypt about invalid elf header)
# http://stackoverflow.com/questions/29524874/invalid-elf-header-caused-by-bcrypt
cd bundle/programs/server/npm/npm-bcrypt/node_modules/
npm install bcrypt
cd ~/SARCAT/dist/sarcat-0.5.0-os.linux.x86_64/app
node bundle/main.js
SARCAT is no running. However I'm not comfortable trying to develop/contribute until I can become more familiar with node.js, meteor, and related modules.
Following readme.md, after npm install (no errors), running npm run build results in an error in the fibers section. Relevant output is in this gist: https://gist.github.com/joeywas/14f289728696a51be0e81b03adab7baa
Snippet of output from above gist:
1649 error node v6.5.0
1650 error npm v3.10.6
1651 error code ELIFECYCLE
1652 error [email protected] install:
node ./build.js
1652 error Exit status 1
1653 error Failed at the [email protected] install script 'node ./build.js'.
The text was updated successfully, but these errors were encountered: