Deploy the Project
To deploy your Catalyst project from the CLI, run the following command in your terminal from your project directory:
$ catalyst deployThis will initialize the call of zcatalyst-cli-plugin-react to compile the react application, followed by the deploy of functions first and finally the client component.
Additionally, executing this command will create a folder named build inside the app folder with the contents of the public folder in its root along with other required configuration and dependency files. The application's source files from the src folder are compiled and included inside a folder named static in the build directory. The required node modules are also added.
The final access URLs of the components are displayed.

You can now open the client component's URL in a browser to access the deployed Cat.ly application. Cat.ly can be accessed now from its web app URL.

Cat.ly displays the shortened URLs in descending order of how frequently they are accessed.
You can also access the original URL of a short ID by manually appending the shortened version of the URL /server/catly/short ID after the web app URL in this format:
https://catly-683477585.development.catalystserverless.com/app/server/catly/qiTWxYIJ
Since we set the homepage to "." the shortened version of a URL will originate from Web_App_URL/app/.
Cat.ly is now functional and will work without any errors.