Getting Started with Acme Platform

Published: Sep 13, 2025 • Updated: Sep 13, 2025 • Author: Jane Doe

Table of Contents

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.

CLI setup screenshot

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:

  1. Verify Node.js version with node -v.
  2. Check that the CLI is up to date: npm i -g @acme/cli@latest.
  3. Review the logs in the terminal for error messages.
  4. Search the Support Knowledge Base for similar problems.

Need further assistance? Contact Support.