Contributing to Bloqade
If you are interested in contributing to this package, please consider going through this guide to help make your developing workflow smooth.
Contributing to the documentation is always a good start to get yourself familiar with the community and workflows.
Documentation
Setup Documentation
If you are editing the documentation, you can use the serve command:
.ci/run doc serveto serve the documentation locally, and it will automatically update the served webpage while you editing.
If you wish to just build the documentation, you can use build command, which will run the build:
.ci/run doc buildLight-weight Documentation Build
Due to the "ancient" technology used by Documenter, it cannot render single page while editing, which causes the doc serve command to be very slow when you are editing. We provide a light-weight build setup to workaround this by removing all literate examples from the documentation. You can enable this by:
.ci/run doc build --light
.ci/run doc serve --lightSetting Up Environments
The Bloqade package itself is a meta-package that simply re-exports component packages that live in the lib directory. Thus, one will need to dev the corresponding component package to make sure they are using the master branch version while developing. You can always do this manually in Julia's Pkg mode via the dev command. For example, in the Bloqade environment (the Bloqade/Project.toml file), one will need to run the following command:
pkg> dev lib/BloqadeExpr lib/BloqadeKrylov lib/BloqadeLattices lib/BloqadeMIS lib/BloqadeODE lib/BloqadeWaveformsThis can be done automatically using the CLI tool introduced in the following.
Components
The CLI Tool
There is a CLI tool in this repository at .ci/run that can help you simplify the workflow substantially. You can run .ci/run -h in your terminal to see the help message. or run .ci/run <command> -h to see the help message of each command. Here are some common examples of it.
Create New Examples
Create a new example project called my_new_examples in examples and setup the dependencies of Bloqade:
.ci/run example create my_new_exampleBuild a Single Example
Build a single example at build/my_example to jupyter notebook:
.ci/run example build my_example