Skip to content

Commit

Permalink
chore: Release 1.3.3 (#42)
Browse files Browse the repository at this point in the history
Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: Graham Hudgins <[email protected]>
Co-authored-by: Zach Mitchell <[email protected]>
Co-authored-by: Rok Garbas <[email protected]>
Co-authored-by: Bryan Honof <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Brendan Magee <[email protected]>
Co-authored-by: flox automations <[email protected]>
Co-authored-by: FloxBot <[email protected]>
  • Loading branch information
9 people authored Oct 2, 2024
1 parent 1fa6ffa commit c56f894
Show file tree
Hide file tree
Showing 9 changed files with 925 additions and 591 deletions.
2 changes: 1 addition & 1 deletion .flox/env/manifest.lock
Original file line number Diff line number Diff line change
Expand Up @@ -1184,4 +1184,4 @@
"priority": 5
}
]
}
}
2 changes: 1 addition & 1 deletion .github/workflows/update.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
run: "flox -vvv upgrade"

- name: "Create Pull Request"
uses: "peter-evans/create-pull-request@v6"
uses: "peter-evans/create-pull-request@v7"
with:
token: "${{ secrets.MANAGED_FLOXBOT_GITHUB_ACCESS_TOKEN_REPO_SCOPE }}"
add-paths: ".flox"
Expand Down
2 changes: 1 addition & 1 deletion FLOX_VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.3.2
1.3.3
23 changes: 12 additions & 11 deletions docs/concepts/environments.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,25 +21,26 @@ environment.
## Environment uses

1. **Path environment**: An environment stored in a local directory.
This environment is self contained in the `.flox` directory and can be
- This environment is self contained in the `.flox` directory and can be
reproduced by sharing the directory in version control or some other file
sharing mechanism.
Path environments are created with [`flox init`][flox_init],
- Path environments are created with [`flox init`][flox_init],
referred to with the `--dir/-d` option on most CLI commands,
and are commonly used for self-contained projects or different subprojects
within a monorepo.
1. **Centrally managed environment**: An environment stored remotely on

2. **Centrally managed environment**: An environment stored remotely on
[FloxHub][floxhub_concept].
You can connect this to a project directory with [`flox pull ...`][flox_pull] or
activate it directly with [`flox activate --remote ...`][flox_activate] for
instant use.
Centrally managed environments enable multiple projects or systems to consume a
shared environment that is versioned with [generations][generation_concept].
Centrally managed environments are created by running [`flox push`][flox_push]
on a path environment and are referred to with the `--remote/-r` option on most
commands.

- Centrally managed environments are created by running [`flox push`][flox_push]
on a path environment.
You can connect a new project directory with an existing centrally managed environment with [`flox pull ...`][flox_pull] or you can activate the environment directly with [`flox activate --remote ...`][flox_activate] for instant use.
- Centrally managed environments enable multiple projects or systems to consume a
shared environment that is versioned with [generations][generation_concept].
They are commonly used as base environments for projects of similar tech stacks,
for reproducing issues on specific systems, or to quickly share tools.
- To disconnect a centrally managed environment from FloxHub, run [`flox pull --copy`][flox_pull] instead of `flox pull`.
This will turn the environment back into a path environment.

See the [sharing guide][sharing_guide] for a more thorough walk through about
sharing and working with different types of environments.
Expand Down
Loading

0 comments on commit c56f894

Please sign in to comment.