Skip to content

Latest commit

 

History

History
20 lines (14 loc) · 483 Bytes

DECISIONS.md

File metadata and controls

20 lines (14 loc) · 483 Bytes

Decisions

Important decisions made in this project are documented here.

1. Forking datocms environments

When forking a datocms environment you have 2 approaches:

Implicit

$ npx datocms migrations:run --destination="newEnv"

Explicit

$ npx datocms environments:fork targetEnv newEnv
$ npx datocms migrations:run --source="newEnv" --in-place

In this project we use the explicit approach because it makes it easier to understand what is happening.