Security News
PyPI Introduces Digital Attestations to Strengthen Python Package Security
PyPI now supports digital attestations, enhancing security and trust by allowing package maintainers to verify the authenticity of Python packages.
ember-deploy-rest-index
Advanced tools
This ember-cli-deploy index adapter uses HTTP REST commands to handle all operations pertaining to the index.html deploy process. The server is, therefore, responsible for managing index.html revisions.
This adapter is intended for those who have an existing REST API and would like to leverage it to manage their index.html revisions. It is ideal for internal system environments (not in the cloud) or in the case that adding additional components such as a NoSQL is prohibitive. For such environments, this adapter will enable the usage of the existing infrastructure to accommodate, still, a Lightning Fast Deployments process.
npm install ember-deploy-rest-index
The adapter implements the following commands as per the ember-cli-deploy
interface:
deploy
- Makes a POST to upload the index.html information with the following payload:
deploy:list
- Makes a GET call to get all uploaded revisions
deploy:activate
- Makes a PUT call to activate the specified revisions
Sample config in your deploy.js file:
store: {
type: 'REST',
serviceHost: 'http://leojh.com',
serviceNamespace: 'api',
serviceIndexVersionResource: 'ember-revisions'
}
type
- Must be 'REST' to use this adapterserviceHost
- the root URL for the serviceserviceNamespace
- path to the serviceserviceIndexVersionResource
- the name of your resource responsible for handling your revisionsThe combination of config settings will help construct the target URLs for calling your service. For example, given the config above, the deploy:list
command will result in: GET http://leojh.com/api/ember-revisions
FAQs
An index ember-cli-deploy adapter for REST backends
The npm package ember-deploy-rest-index receives a total of 0 weekly downloads. As such, ember-deploy-rest-index popularity was classified as not popular.
We found that ember-deploy-rest-index demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
PyPI now supports digital attestations, enhancing security and trust by allowing package maintainers to verify the authenticity of Python packages.
Security News
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
Security News
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.