-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* feat: add docs crate * docs(templates): add readme * ci: remove extra waits
- Loading branch information
Showing
7 changed files
with
98 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
# stellation | ||
# Stellation | ||
|
||
A framework experience for Yew. | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
[package] | ||
name = "stellation" | ||
version = "0.1.0" | ||
edition = "2021" | ||
rust-version = "1.66" | ||
repository = "https://github.com/futursolo/stellation" | ||
authors = [ | ||
"Kaede Hoshiakwa <futursolo@icloud.com>", | ||
] | ||
description = "The framework experience for Yew." | ||
keywords = ["web", "wasm", "yew", "framework", "ssr"] | ||
categories = ["wasm", "web-programming"] | ||
readme = "../../README.md" | ||
homepage = "https://github.com/futursolo/stellation" | ||
license = "MIT OR Apache-2.0" | ||
|
||
[dependencies] | ||
stellation-core = { version = "0.1.0", path = "../stellation-core" } | ||
stellation-frontend = { version = "0.1.0", path = "../stellation-frontend" } | ||
stellation-backend = { version = "0.1.0", path = "../stellation-backend" } | ||
stellation-bridge = { version = "0.1.0", path = "../stellation-bridge" } | ||
stctl = { version = "0.1.0", path = "../stctl" } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
//! Framework experience for Yew. | ||
//! | ||
//! Stellation provides a Yew development stack with: | ||
//! | ||
//! 1. Tooling around Server-side Rendering Support. | ||
//! 2. An easy-to-use, SSR-transparent RPC Implementation. | ||
//! 3. A development server that automatically rebuild upon changes. | ||
//! 4. A single binary distribution with embedded frontend. | ||
//! | ||
//! # Components | ||
//! | ||
//! 1. [stellation-frontend](stellation_frontend): The frontend application. | ||
//! 2. [stellation-backend](stellation_backend): The backend server. | ||
//! 3. [stellation-bridge](stellation_bridge): The bridge that provides communication between | ||
//! frontend and backend. | ||
//! 4. [stctl]: Command line utility for building and serving development | ||
//! server. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
# Stellation Templates | ||
|
||
To create a stellation project from one of the templates, use the following command: | ||
|
||
```bash | ||
$ cargo generate --git https://github.com/stellation-templates | ||
``` |