https://github.com/eclipse-score/eclipse-score.github.io
The landing page website for the Score project
https://github.com/eclipse-score/eclipse-score.github.io
landing-page score
Last synced: 3 months ago
JSON representation
The landing page website for the Score project
- Host: GitHub
- URL: https://github.com/eclipse-score/eclipse-score.github.io
- Owner: eclipse-score
- License: apache-2.0
- Created: 2024-11-15T12:36:18.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2025-07-24T07:04:16.000Z (11 months ago)
- Last Synced: 2025-07-24T10:57:38.845Z (11 months ago)
- Topics: landing-page, score
- Language: Python
- Homepage: https://eclipse-score.github.io/
- Size: 4.8 MB
- Stars: 7
- Watchers: 9
- Forks: 12
- Open Issues: 6
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Score landing page
## Building
### Supported environment
The build currently supports Linux environments.
### Use bazelisk for bazel version management
Follow [instructions](https://github.com/bazelbuild/bazelisk) and setup bazelisk to manage your bazel version based on the .bazelversion file.
### Check and fix formatting
```
$ bazel test //:format.check
$ bazel run //:format.fix
```
## Documentation
Use //docs:docs target to build the documentation.
```
$ bazel build //docs:docs
```
The output directory can be found under ```bazel-bin/docs/docs/_build/html```.
If you need to update pip dependencies, after modifying the requirements file, regenerate the lock file:
```
bazel run //docs:requirements.update
```