@microsoft/rayfin-guide 1.33.0-beta.3 → 1.33.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md
CHANGED
|
@@ -32,3 +32,45 @@ const docs = new DocsService({
|
|
|
32
32
|
});
|
|
33
33
|
const guides = docs.listDocs('guide');
|
|
34
34
|
```
|
|
35
|
+
|
|
36
|
+
## Security
|
|
37
|
+
|
|
38
|
+
Microsoft takes the security of our software products and services seriously, which
|
|
39
|
+
includes all source code repositories in our GitHub organizations.
|
|
40
|
+
|
|
41
|
+
**Please do not report security vulnerabilities through public GitHub issues.**
|
|
42
|
+
|
|
43
|
+
For security reporting information, locations, contact information, and policies,
|
|
44
|
+
please review the latest guidance for Microsoft repositories at
|
|
45
|
+
[https://aka.ms/SECURITY.md](https://aka.ms/SECURITY.md).
|
|
46
|
+
|
|
47
|
+
## Trademarks
|
|
48
|
+
|
|
49
|
+
This project may contain trademarks or logos for projects, products, or services.
|
|
50
|
+
Authorized use of Microsoft trademarks or logos must follow the [Microsoft Trademark and Brand Guidelines](https://www.microsoft.com/legal/intellectualproperty/trademarks/usage/general).
|
|
51
|
+
Use of Microsoft trademarks or logos in modified versions of this project must not cause confusion or imply Microsoft sponsorship.
|
|
52
|
+
Any use of third-party trademarks or logos is subject to those third parties' policies.
|
|
53
|
+
|
|
54
|
+
## License
|
|
55
|
+
|
|
56
|
+
Copyright (c) Microsoft Corporation.
|
|
57
|
+
|
|
58
|
+
MIT License
|
|
59
|
+
|
|
60
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
61
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
62
|
+
in the Software without restriction, including without limitation the rights
|
|
63
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
64
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
65
|
+
furnished to do so, subject to the following conditions:
|
|
66
|
+
|
|
67
|
+
The above copyright notice and this permission notice shall be included in all
|
|
68
|
+
copies or substantial portions of the Software.
|
|
69
|
+
|
|
70
|
+
THE SOFTWARE IS PROVIDED *AS IS*, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
71
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
72
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
73
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
74
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
75
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
76
|
+
SOFTWARE.
|
|
@@ -141,6 +141,7 @@ These variables are read from the shell environment and are never written to fil
|
|
|
141
141
|
| `RAYFIN_TENANT_ID` | Entra ID tenant used by `rayfin up` for portal URLs and the `ctid` query parameter. Equivalent to the `-t, --tenant <id>` flag (precedence: flag > env var > signed-in tenant). |
|
|
142
142
|
| `RAYFIN_ENCRYPTION_FALLBACK_ENABLED` | Set to `true` to allow plaintext token cache on systems without OS credential storage. Development only. |
|
|
143
143
|
| `RAYFIN_FEATURE_FLAGS` | Comma-separated list of experimental feature names to enable (case-insensitive). Recognized values include `storage`, `functions`, and `postgresql`. |
|
|
144
|
+
| `RAYFIN_WEBSERVICE_IMAGE_NAME` | **Experimental.** Override the webservice container image used by `rayfin dev` and `docker compose`. Both `rayfin dev` and this variable are experimental and may change. Defaults to `ghcr.io/microsoft/project-rayfin/webservice:cli-<version>`. |
|
|
144
145
|
| `RAYFIN_APPINSIGHTS_CONNECTION_STRING` | Override the telemetry endpoint for the CLI and VS Code extension. |
|
|
145
146
|
|
|
146
147
|
### Recognized `RAYFIN_FEATURE_FLAGS` values
|
|
@@ -48,8 +48,6 @@ npx rayfin dev --purge
|
|
|
48
48
|
| `--pull` | Pull latest images before starting |
|
|
49
49
|
| `--verbose` | Show detailed Docker output |
|
|
50
50
|
| `--debug` | Enable debug logging |
|
|
51
|
-
| `--migrate` | Run database migrations on start |
|
|
52
|
-
| `--unsafe` | Skip safety checks (use with caution) |
|
|
53
51
|
|
|
54
52
|
## Subcommands
|
|
55
53
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@microsoft/rayfin-guide",
|
|
3
|
-
"version": "1.33.0
|
|
3
|
+
"version": "1.33.0",
|
|
4
4
|
"description": "Cross-cutting Builder guides for the Rayfin platform — discovered by `@microsoft/rayfin-docs` via the `rayfinDocs` package.json field convention.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"files": [
|
|
@@ -20,7 +20,7 @@
|
|
|
20
20
|
},
|
|
21
21
|
"repository": {
|
|
22
22
|
"type": "git",
|
|
23
|
-
"url": "https://github.com/microsoft/
|
|
23
|
+
"url": "https://github.com/microsoft/rayfin.git",
|
|
24
24
|
"directory": "packages/guide"
|
|
25
25
|
},
|
|
26
26
|
"license": "MIT"
|