The main.w
file sets up a simple cloud API and a React application.
- It imports the necessary
cloud
andreact
modules. - It creates a new cloud API with CORS enabled.
- It defines a GET endpoint at the root path ("/") that returns a "Hello, world!" message.
- It sets up a React application with the project path
./app
and a local port4500
. - It adds environment variables
API_URL
andTEXT
to the React application, whereAPI_URL
is the URL of the cloud API andTEXT
is a custom message.
This setup allows you to run a React application that can interact with the cloud API.