Last active 1731089969

knox revised this gist 1731089969. Go to revision

1 file changed, 26 insertions

DevDocs-3.sh(file created)

@@ -0,0 +1,26 @@
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
Newer Older