Development
Development (dev-api.neuroon.ai) is a gestionado por nuestro equipo cluster, separate from Production, where we iterate with continuous deploys. It is the recommended environment to integrate and test before touching Production.
URLs
| Resource | URL |
|---|---|
| API | https://dev-api.neuroon.ai |
| Dashboard | https://dev.neuroon.ai |
| Widget CDN | https://cdn.neuroon.ai (same CDN; change data-api-url) |
How to request access
Development is not self-service. To have a Development shop and keys provisioned for you:
- Email Support or your commercial contact with:
- Organization name.
- Stack (tu stack).
- Email of the integration owner.
- You will receive an invite to the Development Dashboard (
https://dev.neuroon.ai). - From there you issue your own Development
Shop API KeyandWidget Token.
Development credentials are not the same as Production credentials. If you already operate in Production, you will create an additional pair just for Development.
Real limitations
- No SLA. It is a testing environment.
- Database snapshots are not guaranteed.
- Development API keys are invalidated if your account has been inactive for a long time.
- The CDN serves the same widget version as Production. To test pre-release versions, pin
widget@<version>/widget.jswith the version we provide.
Recommended flow
1. Request DEV access -> receive Dashboard invite
2. Provision DEV Shop with synthetic data (10-50 products)
3. Generate DEV sk_* and DEV Widget Token
4. Point your integration to https://dev-api.neuroon.ai with those keys
5. Validate: sync, search, suggestions, tracking, conversion
6. Repeat against Production with PROD sk_*
Suggested environment variables
# Development
NEUROON_API_URL=https://dev-api.neuroon.ai
NEUROON_SHOP_ID=shop_dev_xxxxx
NEUROON_API_KEY=sk_xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
# Widget Token: Base64(shopId:timestamp:HMAC-SHA256), TTL 24h. Issue from your server.
NEUROON_WIDGET_TOKEN=c2hvcF9kZXY6MTcxNTI3MDQwMDpkZXZzaWduYXR1cmU=
# Production
NEUROON_API_URL_PROD=https://api.neuroon.ai
NEUROON_SHOP_ID_PROD=shop_xxxxx
NEUROON_API_KEY_PROD=sk_xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
NEUROON_WIDGET_TOKEN_PROD=c2hvcF9wcm9kOjE3MTUyNzA0MDA6cHJvZHNpZ25hdHVyZQ==
Further reading
- Production
- Switching environments
- Support — to request access.