-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy path.env.example
More file actions
39 lines (37 loc) · 1.74 KB
/
Copy path.env.example
File metadata and controls
39 lines (37 loc) · 1.74 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
# SuperBased Observer — local secrets template
#
# Copy this file to `.env` and fill in the values you need. The
# real `.env` is gitignored (see /.gitignore), so anything you put
# there stays on your machine.
#
# Usage:
# set -a; source .env; set +a # bash / zsh — exports every line
# # then run vsce / ovsx with $VSCE_PAT / $OVSX_PAT available
#
# Or pass explicitly:
# npx --yes @vscode/vsce publish --packagePath … --pat "$VSCE_PAT"
# npx --yes ovsx publish … --pat "$OVSX_PAT"
#
# IMPORTANT: never `git add .env`. The .gitignore is your safety
# rail but `git add -f .env` would bypass it. The `vscode/`
# .vscodeignore additionally blocks .env from ever riding into a
# published VSIX, but the right habit is still "secrets live only
# in ~/.env or here, never in tracked files".
# -----------------------------------------------------------------
# VS Code Marketplace publish token
# -----------------------------------------------------------------
# Mint at https://dev.azure.com/<your-org>/_usersSettings/tokens
# - Organization: "All accessible organizations" (critical!)
# - Scopes: Marketplace → Manage
# - Expiration: 90 days / 1 year — your choice
# Also stored as the VSCE_PAT secret on marmutapp/superbased-observer-private
# for the npm-release.yml `vscode-publish` job.
VSCE_PAT=
# -----------------------------------------------------------------
# Open VSX publish token (Cursor / VSCodium / Windsurf registry)
# -----------------------------------------------------------------
# Mint at https://open-vsx.org/user-settings/tokens after signing the
# Eclipse Foundation Publisher Agreement at
# https://open-vsx.org/user-settings/profile.
# Also stored as the OVSX_PAT secret on marmutapp/superbased-observer-private.
OVSX_PAT=