meteor / postgres-packages

Early preview of PostgreSQL support for Meteor (deprecated, here for historical reasons)
http://meteor-postgres.readthedocs.org/
158 stars 25 forks source link

The app runs fine the very first time, but the second time around, it does not pack packages from 'packages' directory #63

Open debuggerpk opened 7 years ago

debuggerpk commented 7 years ago

so this is my runapp.sh

#! /bin/sh
export POSTGRESQL_URL="postgres://127.0.0.1/mahercash"
export METEOR_PACKAGE_DIRS="$(dirname $0)/packages/"
export MONGO_URL="nope"

cd "$(dirname $0)"

meteor "$@"

it runs fine the first time around with no dependency issues .. but when i stop the server, and then go back and run runapp.sh again, it gives me screen shot 2016-11-02 at 12 32 57 pm

this is my packages file .meteor directory

meteor-base@1.0.4             # Packages every Meteor app needs to have
mobile-experience@1.0.4       # Packages for a great mobile UX
reactive-var@1.0.11            # Reactive variable for tracker
tracker@1.1.1                 # Meteor's client-side reactive programming library

standard-minifier-css@1.3.2   # CSS minifier run for production mode
standard-minifier-js@1.2.1    # JS minifier run for production mode
es5-shim@4.6.15                # ECMAScript 5 compatibility for older browsers.
ecmascript@0.5.9              # Enable ECMAScript2015+ syntax in app code
shell-server@0.2.1            # Server-side component of the `meteor shell` command

autopublish@1.0.7             # Publish all data to the clients (for prototyping)
insecure@1.0.7                # Allow all DB writes from clients (for prototyping)
angular-templates
fourseven:scss
# arboleya:electrify

simple:pg

it is not packaging correctly the second time around. I am using Meteor 1.4.2