Skip to content

Commit

Permalink
Merge pull request #28 from vselvarajijay/main
Browse files Browse the repository at this point in the history
Updating onboarding docs
  • Loading branch information
vselvarajijay authored Nov 1, 2023
2 parents 1c1cd73 + 186ba52 commit 00eadca
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 13 deletions.
18 changes: 5 additions & 13 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,21 +10,13 @@ Akello is a developer platform that enables flexible and rapid development of po
- **Akello SDK** - Client libraries that simplify the process of interacting with the **Akello API**.
- **Akello App** - Web application where you can view your data and perform basic editing tasks. You can also use the Akello App to manage basic workflows.

## Setup and run local
## Quick start guide

Run the API Server, defaults to http://localhost:8000
```console
foo@bar:~$ cd packages/server
foo@bar:~$ pip install -r requirements.text
foo@bar:~$ uvicorn main:app --reload
```
The best way to start working with akello and seeing how it works is by trying out one of our examples under /examples

Example Docs
* [Run your own custom API with akello](https://github.com/akello-io/akello/blob/main/examples/foo-api/README.md)

Run the API Server, defaults to http://localhost:5432
```console
foo@bar:~$ cd packages/apps/cocm-registry
foo@bar:~$ npm install
foo@bar:~$ npm run start
```

## CoCM Registry App

Expand Down
12 changes: 12 additions & 0 deletions examples/foo-api/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,18 @@

This is an example app of how to run your own API using akello.

## Quick Start

If you already have **DynamoDB** running locally, an AWS account and the **environment variables** set (see below) then you just need to run the following commands.

```commandline
pip install -r requirements.text
uvicorn main:app --reload
```

The server will be running on http://localhost:8000


## Install akello and integrate into your Fast API server

```commandline
Expand Down

0 comments on commit 00eadca

Please sign in to comment.