Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/gabrielrufino/startups-searcher
https://github.com/gabrielrufino/startups-searcher
Last synced: 7 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/gabrielrufino/startups-searcher
- Owner: gabrielrufino
- License: mit
- Created: 2020-12-19T15:12:47.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2021-03-20T15:12:55.000Z (over 3 years ago)
- Last Synced: 2024-05-01T14:55:49.464Z (7 months ago)
- Language: JavaScript
- Size: 35.2 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Startups Searcher
Searcher for startups using sonic.
### Getting started
Cloning the repo:
```bash
git clone https://github.com/gabrielrufino/startups-searcher.git
cd startups-searcher
```Starting the infra:
```bash
docker-compose up -d
```Initializing the api:
```bash
cd api
npm install
npm start
```### API Routes
##### Healthcheck
```
GET /
```##### Register startup
```
POST /startups
``````json
{
"name": "Heppi",
"description": "Arrecadamos dinheiro para sua festa de formatura da forma mais inteligente possível",
"website": "https://heppi.io"
}
```##### Suggest terms
```
GET /suggest?q=dinh
```##### Search startups
```
GET /search?q=formatura
```##### Detail startup
```
GET /startup/:id
```