stackify-cli
v1.0.0-beta.12
Published
[](https://npmjs.com/package/stackify-cli) [](https://npm.chart.dev/stackify-cli)
Readme
Stackify
Stackify is a toolkit for deploying and managing modern web applications (Next.js, Vite, Nuxt, Vue, React, and more) to the cloud with minimal configuration.
Packages
packages/stackify-cli: Command-line tool for deployment and service management. See its README for usage and details.packages/stackify-core: Core library for Stackify configuration and integration.packages/stackify-rest: The REST API for Stackify.
Quick Start
Setup stackify server
npx stackify-cli server startSet up your project:
(If using TypeScript) Install stackify-core in your project:
npm install stackify-coreCreate a stackify.config.ts or stackify.config.js file:
with javascript
export default {
name: 'your-app-name',
rest: {
url: "http://my-domain/rest"
},
platform: "vite", // next, nuxt
}with typescript
import { defineStackifyConfig } from "stackify-core";
export default defineStackifyConfig({
// stackify config
});Deploy your application:
npx stackify-cli deployStop the Stackify server:
npx stackify-cli server stopRepository Structure
packages/stackify-cli/— CLI tool and deployment logicpackages/stackify-core/— Core configuration and utilitiespackages/stackify-rest/— rest/server-side code and Docker exampleexamples/— Example projects and configurations
License
ISC
