mirror of
https://github.com/MetaProvide/nextcloud-swarm-plugin.git
synced 2025-02-05 00:59:49 +00:00
3f285c29b0
These files do nothing on systems where Nix and direnv are not installed. They provide development dependencies locally such as PHP, Node.JS and Composer.
10 lines
383 B
Bash
10 lines
383 B
Bash
# SPDX-FileCopyrightText: Copyright (c) 2022, MetaProvide Holding EKF
|
|
# SPDX-License-Identifier: AGPL-3.0-or-later
|
|
|
|
if ! has nix_direnv_version || ! nix_direnv_version 2.3.0; then
|
|
source_url "https://raw.githubusercontent.com/nix-community/nix-direnv/2.3.0/direnvrc" "sha256-Dmd+j63L84wuzgyjITIfSxSD57Tx7v51DMxVZOsiUD8="
|
|
fi
|
|
|
|
use flake
|
|
|
|
export PATH="$PWD/node_modules/.bin:$PATH"
|