Getting Started
Step-by-step guide to setting up your development environment and creating your first project.
1. Install CLI
Install our command line interface tool globally on your machine.
npm install -g @myplatform/cli@latest
2. Create Project
Use the CLI to generate a new project scaffold with default configuration.
myplatform create my-project
3. Start Development
Run the development server and start building your application.
cd my-project myplatform dev
Default dev server: http://localhost:8080
4. Deploy
Use our integrated deployment system to host your project.
myplatform deploy --name my-app
* Requires API token in ~/.myplatform/config
Configuration Options
Framework
Choose from Vue, React, or plain JavaScript when creating your project.
Theme
Select light, dark, or system theme preference.