Account Setup
Register
- Go to app.pulserun.dev
- Click Get Started
- Enter your email and password
- Verify your email via the confirmation link
You can also register via API:
curl -X POST https://api.pulserun.dev/v1/auth/register \
-H "Content-Type: application/json" \
-d '{
"email": "you@example.com",
"password": "your-secure-password",
"name": "Your Name"
}'Login
curl -X POST https://api.pulserun.dev/v1/auth/login \
-H "Content-Type: application/json" \
-d '{
"email": "you@example.com",
"password": "your-secure-password"
}'Returns a JWT token for authenticated requests.
Create an API Key
- Navigate to Settings → API Keys in the dashboard
- Click Create API Key
- Give it a name and set permissions
- Copy the key — it starts with
pr_live_(production) orpr_test_(sandbox)
⚠️
Store your API key securely. It cannot be displayed again after creation.
Add SSH Keys
- Go to Settings → SSH Keys
- Click Add SSH Key
- Paste your public key (
~/.ssh/id_rsa.pubor~/.ssh/id_ed25519.pub) - Set as default to auto-attach to all new instances