https://github.com/beda-software/aidbox-develop-starter-example
Example application for the starter guide https://github.com/beda-software/aidbox-develop-starter-guide
https://github.com/beda-software/aidbox-develop-starter-example
Last synced: over 1 year ago
JSON representation
Example application for the starter guide https://github.com/beda-software/aidbox-develop-starter-guide
- Host: GitHub
- URL: https://github.com/beda-software/aidbox-develop-starter-example
- Owner: beda-software
- License: mit
- Created: 2022-12-14T11:57:41.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2022-12-22T18:27:54.000Z (over 3 years ago)
- Last Synced: 2025-01-10T02:19:38.973Z (over 1 year ago)
- Language: TypeScript
- Size: 402 KB
- Stars: 0
- Watchers: 4
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Aidbox Develop Starter Guide Example Application
This is an example application for the [starter guide](https://github.com/beda-software/aidbox-develop-starter-guide). It contains a frontend [React](https://reactjs.org/) and an [Aidbox](https://www.health-samurai.io/aidbox) platform.
## Getting Started
To get started, follow these steps:
1. Clone the repository:
```bash
git clone git@github.com:beda-software/aidbox-develop-starter-example.git
```
2. Change into the `aidbox-project` directory:
```bash
cd aidbox-project
```
3. Copy the file `.env.tpl` into `.env` file in the same directory and replace `` with the key that you can get on the [Aidbox portal](https://aidbox.app/).
4. Start the Aidbox platform by running the following command:
```bash
docker compose up
```
5. Change into the `frontend` directory in the second console window:
```bash
cd ../frontend
```
6. Install the dependencies:
```bash
yarn install
```
7. Start the frontend app:
```bash
yarn start
```
The frontend app should now be running on [http://localhost:3000](http://localhost:3000).
## License
This project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.