You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
cozy now comes with a Python script template generator to help you get started with using the framework. The wizard will prompt you with a series of questions and generate the appropriate file with starter code. To run the generator, install cozy, then run the following command in the console:
29
+
cozy now comes with a Python script template generator to help you get started
30
+
with using the framework. The wizard will prompt you with a series of questions
31
+
and generate the appropriate file with starter code. To run the generator,
32
+
install cozy, then run the following command in the console:
29
33
30
34
```commandline
31
35
python3 -m cozy
32
36
```
33
37
34
38
## About
35
39
36
-
cozy is being developed by Draper Laboratory under the [DARPA Assured Micropatching (AMP) program](https://www.darpa.mil/program/assured-micropatching).
40
+
cozy is being developed by Draper Laboratory under the [DARPA Assured
Or just `python3 examples/cmp_null_deref.py` if you're in the nix development
68
76
shell.
69
77
78
+
If nix is available, then to run the full suite of tests used in CI, you can
79
+
run:
80
+
81
+
```commandline
82
+
nix build .#tests
83
+
```
84
+
70
85
### Building Docs
71
86
72
-
Building the docs requires the use of sphinx and sphinx-autoapi, which you should have previously installed via pip3. To build fresh HTML docs, run the following:
87
+
Building the docs requires the use of sphinx and sphinx-autoapi, which you
88
+
should have previously installed via pip3. To build fresh HTML docs, run the
89
+
following:
73
90
74
91
```commandline
75
92
source venv/bin/activate
76
93
cd docs
77
94
make html
78
95
```
79
96
80
-
The output documents should be stored in docs/build/html
97
+
The output documents should be stored in docs/build/html
0 commit comments