Sha256: 752ccfbc3051bc5895455092c4ed285fe7a1dafd4fb301672108da2d39122191
Contents?: true
Size: 524 Bytes
Versions: 1
Compression:
Stored size: 524 Bytes
Contents
#!/bin/sh # start basic services mongod --bind_ip 127.0.0.1 --dbpath ~/data & R CMD Rserve --vanilla & # import data echo "Importing data and validating models" ruby -e "require 'lazar'; include OpenTox; Import.public_data if Model::Validation.all.empty?" # get PubChem cids in advance to avoid timeout issues echo "Importing PubChem CID's" ruby -e "require 'lazar'; include OpenTox; Compound.all.each{|c| c.cid}" # start lazar service cd `ls -d $(gem environment gemdir)/gems/lazar-gui-*` unicorn -p 8088 -E production
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
lazar-gui-1.4.2 | docker/start.sh |