This is a NextJS starter in Firebase Studio.
To get started, take a look at src/app/page.tsx.
You can run this application locally using Podman on your MacBook.
- Podman installed on your macOS.
-
Build the container image: Open your terminal in the project's root directory and run the following command. This will build an image named
flowzen-app.podman build -t flowzen-app . -
Run the container: Once the build is complete, run the container with this command. This will start your application and map port
3000from the container to port3000on your local machine.podman run -p 3000:3000 flowzen-app
-
Access the application: You can now open your web browser and navigate to http://localhost:3000 to see your app running.