Package Exports
- ember-cli-deploy-postgres
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (ember-cli-deploy-postgres) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
ember-cli-deploy-postgres
Deploy your Ember.js index to Postgres
A thin wrapper around ember-cli-deploy-mysql
Quick Start
To get up and running quickly, do the following:
Ensure ember-cli-deploy-build is installed and configured.
Install this plugin:
$ ember install ember-cli-deploy-postgres
- Place the following configuration into
config/deploy.js
:
ENV.postgres = {
user: '<your-postgres-user>',
password: '<your-postgres-password>',
database: '<your-postgres-database>'
}
- Run the pipeline:
$ ember deploy <environment>
Installation
Run the following command in your terminal:
ember install ember-cli-deploy-postgres
Documentation
see ember-cli-deploy-mysql substituting "mysql" for "postgres"