DevDocs-3.sh
· 981 B · Bash
Raw
# Server
rackup # Start the server (ctrl+c to stop)
rackup --help # List server options
# Docs
thor docs:list # List available documentations
thor docs:download # Download one or more documentations
thor docs:manifest # Create the manifest file used by the app
thor docs:generate # Generate/scrape a documentation
thor docs:page # Generate/scrape a documentation page
thor docs:package # Package a documentation for use with docs:download
thor docs:clean # Delete documentation packages
# Console
thor console # Start a REPL
thor console:docs # Start a REPL in the "Docs" module
# Tests can be run quickly from within the console using the "test" command.
# Run "help test" for usage instructions.
thor test:all # Run all tests
thor test:docs # Run "Docs" tests
thor test:app # Run "App" tests
# Assets
thor assets:compile # Compile assets (not required in development mode)
thor assets:clean # Clean old assets
1 | # Server |
2 | rackup # Start the server (ctrl+c to stop) |
3 | rackup --help # List server options |
4 | |
5 | # Docs |
6 | thor docs:list # List available documentations |
7 | thor docs:download # Download one or more documentations |
8 | thor docs:manifest # Create the manifest file used by the app |
9 | thor docs:generate # Generate/scrape a documentation |
10 | thor docs:page # Generate/scrape a documentation page |
11 | thor docs:package # Package a documentation for use with docs:download |
12 | thor docs:clean # Delete documentation packages |
13 | |
14 | # Console |
15 | thor console # Start a REPL |
16 | thor console:docs # Start a REPL in the "Docs" module |
17 | |
18 | # Tests can be run quickly from within the console using the "test" command. |
19 | # Run "help test" for usage instructions. |
20 | thor test:all # Run all tests |
21 | thor test:docs # Run "Docs" tests |
22 | thor test:app # Run "App" tests |
23 | |
24 | # Assets |
25 | thor assets:compile # Compile assets (not required in development mode) |
26 | thor assets:clean # Clean old assets |