This is the repository for the source of the website for the Cot web framework.
Make sure you have cargo
installed. You can get it through rustup.
Then, the easiest way to run the development server is to run:
cargo run
The website doesn't need any external resources (such as the database), so nothing more is needed.
Because of the internals of Markdown processing macros work, you will need to use the nightly toolchain and enable the nightly
features if you want to see the changes made to the Markdown files in the without using cargo clean
:
cargo +nightly run --features nightly
To make the development more convenient, you can use bacon to get live reloading capabilities. After installing it, you can execute:
bacon serve
All the changes you do in Rust source files or the templates should be automatically reflected in the web browser.
Cot Website is licensed under either of the following, at your option:
- Apache License, Version 2.0, (LICENSE-APACHE or https://www.apache.org/licenses/LICENSE-2.0)
- MIT License (LICENSE-MIT or https://opensource.org/licenses/MIT)
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in Cot Website by you shall be dual licensed under the MIT License and Apache License, Version 2.0, without any additional terms or conditions.