Overview
Once a Project exists, you manage it through a handful of lifecycle operations: rename it, duplicate it (copy or fork), merge a fork’s changes back, transfer it to a new owner, share its content with other Projects, and archive it when the work is done.How it works
- Copying creates an independent duplicate. What gets copied depends on the Project type: DFS Projects copy through the UI in one step, while Git-based Projects support deep and reference copies.
- Forking (DFS Projects) creates a separate Project whose changes can be reviewed and merged back into the original, so many contributors can work independently.
- Only the Project owner can rename, transfer, or archive a Project. See the permission tables.
Best practice: Before starting from scratch, copy or fork an existing Project; it’s faster and keeps setups consistent across the team. Rename the copy, and invite the original owner as a contributor for guidance.
Rename a Project
Renaming is quick but can’t be undone, and it has consequences: the Project’s endpoints are automatically unpublished and get new URLs when re-published, and local copies must be cloned again because their metadata points at the old name.- Go to Settings > Access & Sharing and enter a new name. Domino checks that the name isn’t already in use.
- Read the warning Domino shows. If any of the consequences are unacceptable, click Cancel.
- Click Rename Project. You can keep working in the Project immediately.
Copy a DFS Project
Copying a DFS Project creates a duplicate under your account with the same files and restricted Project status. The copy does not include Project settings, run history, or scheduled Jobs.- Open the Project’s Overview page and click the copy icon.
- Enter a name for the new Project and click Copy.
Copy a Git-based Project
Copying a Git-based Project bootstraps new work from a well-organized original. Two copy modes cover different needs:- Deep copy creates an independent copy of the original repository. Use it to build a new Project from an existing one. Available from the UI or the API.
- Reference copy points the new Project at the same main Git repository, so changes in one Project appear in all referenced Projects. Use it when parallel Projects rely on one shared repository, a common pattern for statistical analysis in pharmaceutical work. Available only through the API.
| Copied | Not copied | |
|---|---|---|
| Project overview | Tags, description, and README | |
| Project materials | Files, artifacts, code, Datasets and imported Git repositories, imported Projects | External data sources, audit data, run history, discussion history |
| Project settings | Environment variables, Hardware Tier, Environment, results, exports, integrations, and visibility | Access and sharing |
| Other | Published Apps, Domino endpoints, and Launchers |
- Open the Git-based Project and click Copy.
- Enter a name for the new Project, then click Next.
- Enter your Git credentials, then click Copy.
copy-project endpoint with either a deepCopy or referenceCopy spec:
- Only GitHub, GitHub Enterprise, GitLab, and GitLab Enterprise are supported. Bitbucket and other providers are not.
- SSH credentials are not supported; use a personal access token with repository read and write permissions.
- The GitHub repository you copy must be a template repository.
- Collaborators on the parent Project are not copied.
- Datasets are copied only through the API with
copyDatasets: True. A Dataset being copied is locked in a “copying” state; if you see the errorOne or more of the datasets in this project are already being copied elsewhere, the new Project was not created. Wait for the in-flight copy to finish and retry the same API call.
Fork a DFS Project
Forking copies a Project’s files into a new, separate Project for independent development. Changes in the fork can later be reviewed and merged back into the original. You must be the owner, a contributor, or a results consumer to fork a Project.- Open the Project overview and click Fork.
- Enter a name for the fork.
Merge a fork back
After making changes in the fork, click Request Review on its overview page (owner or contributor required). Review the changes and describe them in a message; contributors on the main-line Project are notified. When a contributor accepts the review, Domino merges the changes and writes a new revision of the main-line Project. Click Reviews in the navigation pane to see the history and status of review requests.Transfer Project ownership
You can transfer any Project you own to another user or organization, for example to promote a private scratch Project into a shared team Project. Go to Settings > Archive Project or Transfer Ownership, click Transfer Ownership, and enter the new owner’s username or organization name. The new owner receives an email (organizations don’t). To transfer without endpoint downtime: give the new owner contributor or results consumer access, have them fork the Project and re-publish the endpoint there, point your systems at the new URL, then shut down the original endpoint and archive the original Project.Export and import Project content
One Project can import another Project’s files, environment variables, or both. During runs, each imported Project’s directory is mounted read-only at/mnt/<username>/<project name> and pulled in alongside the current Project’s files.
Importing changes your own Project’s path from
/mnt to /mnt/<username>/<project name>. Replace any hardcoded /mnt paths in your code with the $DOMINO_WORKING_DIR environment variable.release on the Jobs page.
To import, you need Project Importer, Contributor, or Owner permission on the source Project:
- In the destination Project, go to Code and click Other Projects.
- Click Import a Project and enter the source path as
<username>/<project-name>, then click Import.
Archive a Project
Archive Projects you no longer need. Archiving stops all scheduled runs and runs in progress, blocks CLI file uploads and downloads for collaborators, and removes any globally discoverable published App. Go to Settings > Archive Project or Transfer Ownership and click Archive This Project. To unarchive a Project, contact your Domino representative.Related
- Create Projects: create from scratch or from a template.
- Collaborate on Projects: roles and permissions behind these operations.
- Project settings: visibility, defaults, and environment variables.