Quick Start

Get started with Gophel CLI in minutes. Follow these steps to set up and run your first application.

1. Installation

Install Gophel CLI using Go:

Install the latest version of Gophel

go install github.com/abdorrahmani/gophel@latest
2. Authentication

Authenticate with your Gophel account:

Start the authentication process

gophel auth

You'll be prompted to enter your username and API key.

3. Build Your First Application

Navigate to your Go project directory and build your application:

Build and run your application

gophel build myapp --port 8080
4. Monitor Your Application

Check your application status and logs:

View application status

gophel status <ID>

View application logs

gophel log <ID>
Next Steps