Skip to content

Commit 9d3f6f5

Browse files
authored
Documentation about environment variables and XState (#585)
This adds some documentation about the use of environment variables and XState in the JavaScript component.
1 parent b3eaa2e commit 9d3f6f5

File tree

2 files changed

+18
-0
lines changed

2 files changed

+18
-0
lines changed

.env.example

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# Stately Inspector is enabled when this is set to true
2+
XSTATE_INSPECT=false

DEVELOP.md

+16
Original file line numberDiff line numberDiff line change
@@ -56,10 +56,26 @@ We use ESBuild to bundle into an ES Module, which the Jupyter Widget will then l
5656
npm run build:watch
5757
```
5858

59+
### Environment Variables
60+
61+
To use custom environment variables, copy the example environment file:
62+
63+
```sh
64+
cp .env.example .env
65+
```
66+
67+
This file contains the list of environment variables for the JavaScript component, and the build task will use them when available.
68+
69+
**Note: `.env` is in `.gitignore` and should never be committed.**
70+
71+
### Architectural notes
72+
5973
All models on the TypeScript side are combined into a single entry point, which is compiled by ESBuild and loaded by the Python `Map` class. (Refer to the `_esm` key on the `Map` class, which tells Jupyter/ipywidgets where to load the JavaScript bundle.)
6074

6175
Anywidget and its dependency ipywidgets handles the serialization from Python into JS, automatically keeping each side in sync.
6276

77+
State management is implemented using [XState](https://stately.ai/docs/xstate). The app is instrumented with [Stately Inspector](https://stately.ai/docs/inspector), and the use of the [VS Code extension](https://stately.ai/docs/xstate-vscode-extension) is highly recommended.
78+
6379
## Publishing
6480

6581
Push a new tag to the main branch of the format `v*`. A new version will be published to PyPI automatically.

0 commit comments

Comments
 (0)