Future Feature: ACC integration commands are planned for future releases. Projects created with create-akinon-app are designed to be ACC-ready when this feature becomes available.
What is ACC Integration?
Akinon Commerce Cloud (ACC) is a cloud-native SaaS solution that provides a flexible and scalable digital commerce platform. When available, the CLI will provide seamless integration with ACC for deploying and managing your UI Protocol applications.
Planned Features
The future ACC integration will include:
Automatic Configuration
- ACC manifest generation - Automatic creation of deployment configurations
- Environment setup - Proper environment variable configuration
- Build script generation - Optimized build processes for cloud deployment
- Proxy configuration - API routing and service integration
Deployment Commands
# Planned commands (not yet available)
akinon-ui acc:init # Initialize ACC configuration
akinon-ui acc:deploy # Deploy to ACC
akinon-ui acc:status # Check deployment statusCurrent State
Projects created with create-akinon-app are designed with ACC deployment in mind:
- Standard build process - Uses conventional build commands that ACC can execute
- Environment compatibility - Follows Node.js best practices for cloud deployment
- Configuration structure - Ready for ACC manifest generation
- Asset optimization - Build outputs are optimized for cloud serving
Manual ACC Setup
While waiting for automated CLI support, you can manually configure ACC deployment:
1. Create ACC Configuration
Create an akinon.json file in your project root:
{
"name": "My UI Application",
"description": "UI Protocol application",
"slug": "my-ui-app",
"scripts": {
"build": "./build.sh"
},
"env": {},
"formation": {
"web": {
"min": 1,
"max": "auto"
}
},
"runtime": "node:hydrogen-alpine"
}2. Create Build Script
Create a build.sh file:
#!/bin/bash
npm i -g pnpm
pnpm install
pnpm build3. Create Process File
Create a Procfile:
web: pnpm serveResources
For more information about ACC:
Timeline
ACC integration commands are under active development and will be available in future CLI releases. Projects created today with create-akinon-app will be compatible with these future features without requiring migration.