Overview
Welcome to the Acme Platform! This guide will walk you through everything you need to get up and running quickly.
Acme Platform provides a robust set of APIs, a flexible UI framework, and powerful analytics tools to help you build modern applications.
Prerequisites
- Operating System: Windows 10+, macOS 12+, or Linux (Ubuntu 20.04+)
- Node.js v18 or later
- Git 2.30+
- An active Acme account (sign up here)
Installation
Open a terminal and run the following commands:
npm install -g @acme/cli
acme login
acme init my-first-app
cd my-first-app
npm run dev
This will install the Acme CLI, authenticate you, scaffold a new project, and start the development server.
Your First Project
After the dev server starts, open http://localhost:3000 in your browser. You should see the default welcome page.
Explore the src/ folder – the main entry file is src/main.js. Edit it to customize your app.
// src/main.js
import { createApp } from '@acme/ui';
import App from './App.vue';
createApp(App).mount('#app');
Troubleshooting
If you encounter issues, try the following steps:
- Verify Node.js version with
node -v. - Check that the CLI is up to date:
npm i -g @acme/cli@latest. - Review the logs in the terminal for error messages.
- Search the Support Knowledge Base for similar problems.
Need further assistance? Contact Support.