Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/lukewilliamboswell/roc-platform-template-rust
Rust platform template
https://github.com/lukewilliamboswell/roc-platform-template-rust
roc-lang
Last synced: 6 days ago
JSON representation
Rust platform template
- Host: GitHub
- URL: https://github.com/lukewilliamboswell/roc-platform-template-rust
- Owner: lukewilliamboswell
- License: upl-1.0
- Created: 2024-05-18T12:30:06.000Z (6 months ago)
- Default Branch: main
- Last Pushed: 2024-11-04T00:14:53.000Z (7 days ago)
- Last Synced: 2024-11-04T01:19:20.718Z (7 days ago)
- Topics: roc-lang
- Language: Roc
- Homepage:
- Size: 49.8 KB
- Stars: 1
- Watchers: 1
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- roc-awesome - Rust platform template
README
# Roc platform template for Rust
This is a template for getting started with a [roc platform](https://www.roc-lang.org/platforms) using [Rust](https://www.rust-lang.org).
If you have any ideas to improve this template, please let me know. 😀
## Developing locally
Build the platform with `roc build.roc` to produce the prebuilt-binaries in `platform/`.
Then you will be able to run `roc app.roc`.
## Packaging the platform
Bundle the platform source and prebuilt-binaries with `roc build --bundle .tar.br platform/main.roc`, and then upload to a URL.
## Platform documentation
Generate the documentation with `roc docs platform/main.roc` and then serve the files in `generated-docs/` using a webserver.
## Advaced - LLVM IR
You can generate the LLVM IR for the app with `roc build --emit-llvm-ir app.roc` which is an authoritative reference for what roc will generate in the application object.