-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env-build.example
More file actions
59 lines (52 loc) · 1.98 KB
/
.env-build.example
File metadata and controls
59 lines (52 loc) · 1.98 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
#
# YourCLI .env-build configuration file
#
# This file is used by the Makefile to load environment variables specific to
# build and test processes. The values in this file are the default values
# used during development and testing. You can override these values in a
# .env-build.local file for local development or in CI/CD pipelines.
#
# ----------------------------------------------------------------------------
# Environment selection
# ----------------------------------------------------------------------------
# Used by the Makefile to load .env-build.<ENV>
ENV=local
# ----------------------------------------------------------------------------
# Tooling overrides (optional)
# ----------------------------------------------------------------------------
BANDIT=bandit
PYTEST=pytest
PIP_AUDIT=pip-audit
PYRIGHT=pyright
PYTHON=python3
RUFF=ruff
TWINE=twine
UV=uv
# ----------------------------------------------------------------------------
# uv behavior
# ----------------------------------------------------------------------------
# Common values:
# --dev
# --all-extras --dev
# --frozen
UV_SYNC_ARGS=--all-extras --dev
# ----------------------------------------------------------------------------
# Build / test configuration
# ----------------------------------------------------------------------------
# Extra args passed to `uv build`
BUILD_ARGS=
# Extra args passed to `pytest`
# Example: -q --maxfail=1
TEST_ARGS=
# ----------------------------------------------------------------------------
# Publishing PyPI
# ----------------------------------------------------------------------------
# PyPI repository name for twine
PUBLISH_REPO=<changeme>
TWINE_USERNAME=<changeme>
TWINE_PASSWORD=<changeme>
# ----------------------------------------------------------------------------
# Project metadata overrides (optional)
# ----------------------------------------------------------------------------
# If unset, the Makefile will read the name from pyproject.toml
# PACKAGE=<your-package-name>