repositories
loading repo index
repositories
loading repo index
repository
loading code, commits, and activity
public Clawd ADK gateway launch mirror
stars
latest
clone command
git clone gitlawb://did:key:z6Mkq5mY...iFZ5/my-project-publ...git clone gitlawb://did:key:z6Mkq5mY.../my-project-publ...2fa351d6docs: add automaton and perps launch sources16d ago| #1 | --- |
| #2 | title: 'Full Stack' |
| #3 | --- |
| #4 | |
| #5 | The Full Stack app example can be found [here](https://github.com/mem0ai/mem0/tree/main/embedchain/examples/full_stack). |
| #6 | |
| #7 | This guide will help you setup the full stack app on your local machine. |
| #8 | |
| #9 | ### 🐳 Docker Setup |
| #10 | |
| #11 | - Create a `docker-compose.yml` file and paste the following code in it. |
| #12 | |
| #13 | ```yaml |
| #14 | version: "3.9" |
| #15 | |
| #16 | services: |
| #17 | backend: |
| #18 | container_name: embedchain-backend |
| #19 | restart: unless-stopped |
| #20 | build: |
| #21 | context: backend |
| #22 | dockerfile: Dockerfile |
| #23 | image: embedchain/backend |
| #24 | ports: |
| #25 | - "8000:8000" |
| #26 | |
| #27 | frontend: |
| #28 | container_name: embedchain-frontend |
| #29 | restart: unless-stopped |
| #30 | build: |
| #31 | context: frontend |
| #32 | dockerfile: Dockerfile |
| #33 | image: embedchain/frontend |
| #34 | ports: |
| #35 | - "3000:3000" |
| #36 | depends_on: |
| #37 | - "backend" |
| #38 | ``` |
| #39 | |
| #40 | - Run the following command, |
| #41 | |
| #42 | ```bash |
| #43 | docker-compose up |
| #44 | ``` |
| #45 | |
| #46 | 📝 Note: The build command might take a while to install all the packages depending on your system resources. |
| #47 | |
| #48 |  |
| #49 | |
| #50 | ### 🚀 Usage Instructions |
| #51 | |
| #52 | - Go to [http://localhost:3000/](http://localhost:3000/) in your browser to view the dashboard. |
| #53 | - Add your `OpenAI API key` 🔑 in the Settings. |
| #54 | - Create a new bot and you'll be navigated to its page. |
| #55 | - Here you can add your data sources and then chat with the bot. |
| #56 | |
| #57 | 🎉 Happy Chatting! 🎉 |
| #58 |