We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2a72f6f commit eecc424Copy full SHA for eecc424
README.md
@@ -44,6 +44,7 @@ cargo run -p raw --example basic
44
- `docs/DEVELOPMENT.md`
45
- `docs/CONTRIBUTING.md`
46
- `docs/CONFIGURATION.md`
47
+- `docs/CLI.md`
48
49
## License
50
Licensed under Creative Commons Attribution-NonCommercial-NoDerivatives 4.0 International.
docs/CLI.md
@@ -0,0 +1,18 @@
1
+# CLI
2
+
3
+Raw ships with a small CLI for scaffolding new projects.
4
5
+## Commands
6
7
+### `raw new <name>`
8
+Creates a new Raw application in the named directory.
9
10
+```bash
11
+cargo run -p raw-cli -- new my-raw-app
12
+```
13
14
+### `raw routes`
15
+Planned command to display registered routes.
16
17
+### `raw run`
18
+Planned command to run the development server.
0 commit comments