We're excited to announce that Kolaybase is now basefyio. This rebrand reflects our vision of making backend development effortless for developers everywhere.
What changed
New domain
All services now live under basefyio.com:
- Dashboard: app.basefyio.com
- API: api.basefyio.com
- Website: basefyio.com
New CLI command
The CLI command has changed from kb to basefyio (or bf for short):
basefyio login
basefyio init
basefyio link
basefyio status
basefyio db push
New SDK package
The JavaScript/TypeScript SDK has been renamed:
npm install basefyio-js
import { basefyioClient } from 'basefyio-js';
const client = new basefyioClient({
projectId: 'your-project-id',
anonKey: 'your-anon-key',
});
Updated environment variables
All environment variable prefixes have changed from KOLAYBASE_ to BASEFYIO_:
| Before | After |
|--------|-------|
| KOLAYBASE_API_URL | BASEFYIO_API_URL |
| KOLAYBASE_ANON_KEY | BASEFYIO_ANON_KEY |
| KOLAYBASE_SERVICE_KEY | BASEFYIO_SERVICE_KEY |
| KOLAYBASE_PROJECT_ID | BASEFYIO_PROJECT_ID |
| KOLAYBASE_DATABASE_URL | BASEFYIO_DATABASE_URL |
What didn't change
- Your data — all databases, storage buckets, and auth realms are untouched
- Your API keys — existing keys continue to work
- Core functionality — everything works exactly as before, just under a new name
Migration guide
- Update CLI: Run
npm install -g basefyio-cli - Update SDK: Replace
kolaybase-jswithbasefyio-jsin yourpackage.json - Update env vars: Rename
KOLAYBASE_variables toBASEFYIO_ - Update imports:
KolaybaseClientis nowbasefyioClient - Update bookmarks: The dashboard is now at
app.basefyio.com