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.
- Host: GitHub
- URL: https://github.com/droxey/gopherology
- Owner: droxey
- License: mit
- Created: 2019-01-04T23:59:14.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2025-02-24T01:56:50.000Z (11 months ago)
- Last Synced: 2025-02-24T02:41:34.361Z (11 months ago)
- Topics: echo-framework, golang, just-for-fun, microservice, numerology
- Language: Go
- Homepage:
- Size: 3.56 MB
- Stars: 2
- Watchers: 1
- Forks: 1
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# 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
```