You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Node.js application framework. Set it explicitly when auto-detection picked the wrong one.
[optional]
root_directory
str
Application root directory (where package.json is located) relative to public_html. Omit it, or send ".", for public_html itself.
[optional]
output_directory
str
Build output directory relative to the root directory
[optional]
build_script
str
The package.json script that builds the application
[optional]
entry_file
str
The main entry point file for the application (required for express, fastify, nest, nuxt and hono app types)
[optional]
package_manager
str
Package manager used to install dependencies
[optional]
Example
fromhostinger_api.models.hosting_v1_node_js_update_build_settings_requestimportHostingV1NodeJsUpdateBuildSettingsRequest# TODO update the JSON string belowjson="{}"# create an instance of HostingV1NodeJsUpdateBuildSettingsRequest from a JSON stringhosting_v1_node_js_update_build_settings_request_instance=HostingV1NodeJsUpdateBuildSettingsRequest.from_json(json)
# print the JSON string representation of the objectprint(HostingV1NodeJsUpdateBuildSettingsRequest.to_json())
# convert the object into a dicthosting_v1_node_js_update_build_settings_request_dict=hosting_v1_node_js_update_build_settings_request_instance.to_dict()
# create an instance of HostingV1NodeJsUpdateBuildSettingsRequest from a dicthosting_v1_node_js_update_build_settings_request_from_dict=HostingV1NodeJsUpdateBuildSettingsRequest.from_dict(hosting_v1_node_js_update_build_settings_request_dict)