This application demonstrates basic CRUD operations using Forge SQL ORM. Unlike the dynamic example, this version works with a predefined database schema and does not automatically reflect changes in the UI when the database schema is modified.
See the Forge documentation for more details.
Before starting, ensure that your Forge environment is set up. Follow the Forge setup guide for instructions.
npm installInstall frontend dependencies (inside static/forge-orm-basic[forge-orm-basic](static/forge-orm-basic) directory)
npm installBuild the frontend (inside static/forge-orm-basic[forge-orm-basic](static/forge-orm-basic) directory)
npm run buildforge registerforge deployforge install -s <environment>.atlassian.netThis example allows you to:
- Create user entities with
nameandemailfields. - Retrieve all users from the database.
- Update user details.
- Delete users.
- Find duplicate users based on the
nameoremailfields.
- You can add users with
nameandemailfields. - You can retrieve all users from the database.
- You can update user details.
- You can delete a user.
- Use
forge deployto persist code changes. - Use
forge installonly when installing the app on a new site. - Once the app is installed, any new deployments will be automatically reflected without needing to reinstall.