Documentation Index
Fetch the complete documentation index at: https://www.qovery.com/docs/llms.txt
Use this file to discover all available pages before exploring further.
Overview
The RDE Portal automatically tracks your work using git snapshots. Save your progress at any time and restore previous versions if needed. Think of snapshots as save points - you can always go back if something goes wrong.Creating Snapshots
Press Cmd+S (macOS) or Ctrl+S (Windows/Linux) to create a snapshot at any time. Each snapshot:- Creates a git commit of your current workspace state
- Captures all file changes in your workspace
- Is timestamped so you can find it later in the history
Viewing History
To browse your snapshot history:- Click the History button in the workspace top bar
- The history panel opens, showing a chronological list of all snapshots
- Each entry displays the timestamp of when the snapshot was created
Restoring a Snapshot
To restore your workspace to a previous state:- Open the History panel from the top bar
- Find the snapshot you want to restore
- Click Restore next to that snapshot
How It Works
Under the hood, snapshots use standard git operations:- Creating a snapshot runs
git addandgit commiton your workspace files - Viewing history reads the git commit log
- Restoring a snapshot checks out a previous commit
Since snapshots are git commits, they include all file changes but exclude files listed in your
.gitignore. Large binary files, node_modules, and other ignored paths are not captured in snapshots.Best Practices
Snapshot before major changes
Snapshot before major changes
Before refactoring, restructuring, or trying something significantly different, create a snapshot. If the changes don’t work out, you can restore to the pre-change state in seconds.
Snapshot before experimental approaches
Snapshot before experimental approaches
Trying a new library, framework feature, or unfamiliar technique? Snapshot first. This lets you experiment freely knowing you can roll back.
Snapshot at natural checkpoints
Snapshot at natural checkpoints
Create snapshots when you complete a feature, fix a bug, or reach a working state. These serve as known-good points you can return to if later changes introduce problems.
Snapshot before restoring
Snapshot before restoring
Before restoring an older snapshot, create a new snapshot of your current state. This preserves your latest work in case you want to come back to it.
Next Steps
Publishing Your App
Deploy your workspace application to a production URL.
Using the Editor
Terminal tabs, AI chat, and the full editor layout.