Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fixed typo: libraray -> library #11435

Merged
merged 1 commit into from
Mar 28, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
fixed typo: libraray -> library
  • Loading branch information
MichelleLucero committed Mar 28, 2020
commit 07e383bb0be341872fffd100dc5592c3cd639314
2 changes: 1 addition & 1 deletion examples/custom-server-actionhero/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ module.exports = class CreateChatRoom extends Action {

3. Tell ActionHero to use the api rather than the file server as the top-level route in `api.config.servers.web.rootEndpointType = 'api'`. This will allows "/" to listen to API requests. Also update `api.config.general.paths.public = [ path.join(__dirname, '/../static') ]`. In this configuration, the next 'static' renderer will take priority over the ActionHero 'public file' api. Note that any static assets (CSS, fonts, etc) will need to be in "./static" rather than "./public".

Note that this is where the websocket server, if you enable it, will place the `ActionheroWebsocketClient` libraray.<br>
Note that this is where the websocket server, if you enable it, will place the `ActionheroWebsocketClient` library.<br>

4. Configure a wild-card route at the lowest priority of your GET handler to catch all web requests that aren't caught by other actions:

Expand Down