Best Practices for Working with Applications
Here are a few best practices for working with applications in PlatformNx"
Always export before deleting: Essential for disaster recovery. Exported files allow you to restore accidentally deleted applications or revert to previous versions, minimizing downtime and data loss.
Use clear naming conventions: Improves maintainability and collaboration. Descriptive names like
Fetch_Employee_Details
clearly indicate the application's purpose, avoiding confusion caused by generic names likeGet1
.Validate Imports: Prevents instability and errors. Ensure imported files are compatible with your platform environment to avoid functionality issues or system crashes due to differing structures or dependencies.
Take regular backups: Protects against data loss and ensures business continuity. Regular exports of critical applications allow for quick restoration after system failures, accidental deletions, or data corruption.
Last updated
Was this helpful?