emc uses the command line postgres commands like dropdb and psql during setup. This is unnecessary, it has a database handle. Its also problematic with Macports which doesn't put a lot of these commands in the user's PATH or they're versioned (so its psql84, for example).
Use DBI instead. emc::Migration is a good place to start
emc uses the command line postgres commands like dropdb and psql during setup. This is unnecessary, it has a database handle. Its also problematic with Macports which doesn't put a lot of these commands in the user's PATH or they're versioned (so its psql84, for example).
Use DBI instead. emc::Migration is a good place to start