An open API service indexing awesome lists of open source software.

https://github.com/droxey/gopherology

šŸ”® Go microservice that recursively computesĀ a numerological Life Path number for a given birthdate.
https://github.com/droxey/gopherology

echo-framework golang just-for-fun microservice numerology

Last synced: 1 day ago
JSON representation

šŸ”® Go microservice that recursively computesĀ a numerological Life Path number for a given birthdate.

Awesome Lists containing this project

README

          

# gopherology
![Go Report Card](https://goreportcard.com/badge/github.com/droxey/gopherology)

šŸ”® Go microservice that recursively computesĀ a numerological Life Path number for a given birthdate.

## Usage

### `/api/path`

#### Request

```bash
curl -X POST https://gopherology.herokuapp.com/api/path \
-H 'Content-Type: application/json' \
-d '{"day":26,"month":6,"year":1988}'
```

#### Response

```json
{
"pathNumber": 22,
"detailsUrl": "https://www.tokenrock.com/numerology/my_life_path/?num=22",
"isMasterNumber": true
}
```

## Development

```bash
$ export PORT=1324; go run main.go
```