Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/unleash/actix-template
Template repo for writing web-apps with Actix inside Unleash. See https://github.com/bricks-software/unleash-cloud-operator for an example which does both actix and k8s operator
https://github.com/unleash/actix-template
Last synced: 7 days ago
JSON representation
Template repo for writing web-apps with Actix inside Unleash. See https://github.com/bricks-software/unleash-cloud-operator for an example which does both actix and k8s operator
- Host: GitHub
- URL: https://github.com/unleash/actix-template
- Owner: Unleash
- License: mit
- Created: 2023-01-06T12:57:53.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2024-09-10T17:43:40.000Z (2 months ago)
- Last Synced: 2024-09-10T19:54:33.810Z (2 months ago)
- Language: Rust
- Size: 32.2 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 11
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# actix-template
Template repo for writing web-apps with Actix inside Unleash.Defaults to running at all interfaces on port 1337.
Two endpoints will be available on
* http://localhost:1337/internal-backstage/metrics
* http://localhost:1337/internal-backstage/health# What this repo does
* Shows a way to setup an actix server with correct logging and prometheus metrics for all endpoints
* Shows a way to build a rust project with caches and docker image being built.
* Use Clap to parse command line arguments. This will auto-generate a `--help` command for the binary if you're wondering what options there are
* Sets up a github action clippy action which will give codequality warnings on https://github.com/Unleash/actix-template/security/code-scanning
* Sets up a github action which runs tests, then builds the binary and then a docker image and uploads to aws ECR
* Show a way to host TLS with custom SSL certificates# To run with SSL
```bash
cargo run -- -c sslexample/server-cert.pem -k sslexample/server.key -s 1337
```# What this repo aims to do in the future
* Configure opentelemetry to post traces to JAEGER or other Opentelemetry compatible endpoints# Interesting documentation
* https://actix.rs/ - main webpage of actix
* https://github.com/paperclip-rs/paperclip - Paperclip (OpenAPI documentation in Rust)
* https://tokio.rs/ - Asynchronous runtime for Rust
* https://clap.rs - Clap - Command line parser for Rust.# What this repo does not do
* Configure paperclip for openapi documentation. We'll make a separate repo for how to do this
* Setup database migration or database connections. We have an ambition for making this example as well.
* Asynchronous tasks / scheduled tasks.