Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/includeos/nacl
https://github.com/includeos/nacl
conan
Last synced: about 1 month ago
JSON representation
- Host: GitHub
- URL: https://github.com/includeos/nacl
- Owner: includeos
- Created: 2017-10-05T12:07:01.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2019-04-11T13:37:22.000Z (over 5 years ago)
- Last Synced: 2024-10-09T19:23:03.067Z (about 1 month ago)
- Topics: conan
- Language: Python
- Size: 909 KB
- Stars: 10
- Watchers: 9
- Forks: 9
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# NaCl
NaCl is a configuration language for IncludeOS that you can use to add for example interfaces and firewall rules to your service.
Documentation: http://includeos.readthedocs.io/en/latest/NaCl.html
1. Install antlr4 exactly like described under Quick start: http://www.antlr.org/
2. `pip install antlr4-python2-runtime`
3. `pip install pystache`
4. Generate python parser / lexer for `NaCl.g4` grammar WITH visitor (NaClVisitor.py): `antlr4 -Dlanguage=Python2 NaCl.g4 -visitor`
5. Make transpiler program executable: `chmod u+x NaCl.py`
6. run with `cat examples/nacl.nacl | ./NaCl.py`
7. For testing, using the `grun` program (alias really) is nice. This requires that you generate the java lexer / parser
8. `antlr4 NaCl.g4 && javac NaCl*.java`
9. `cat examples/nacl.nacl | grun NaCl prog -gui`### NaCl Packages
The latest packages for NaCl can be found on [Bintray](https://bintray.com/includeos/includeos/NaCl%3Aincludeos)
#### Creating NaCl conan package
The [conanfile.py](conanfile.py) contains the recipe for building a conan package.
You can set up your remotes and profiles from [conan_config](https://github.com/includeos/conan_config)
To build the NaCl package:
```
conan create includeos/latest -pr
```To upload the package:
```
conan upload --all -r includeos NaCl/@includeos/
```> **Note:** To get the NaCl package into editable mode for development checkout [editable_packages](https://docs.conan.io/en/latest/developing_packages/editable_packages.html)
Packages are uploaded to two channels:
- `latest`: the latest upload
- `stable`: the last stable upload> **Note:** For more information checkout the [Jenkinsfile](Jenkinsfile)