Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/matheuscas/autocomplete-challenge

A small project to respond to a job interview process challenge.
https://github.com/matheuscas/autocomplete-challenge

autocomplete autocomplete-search jquery jquery-plugin mongodb python3 sanic sanic-framework

Last synced: 6 days ago
JSON representation

A small project to respond to a job interview process challenge.

Awesome Lists containing this project

README

        

# Autocomplete Test of Concept

## Technologies
- Jquery
- Python + Sanic
- Mongodb

## Observations
- Jquery

It could be Vue, Angular or any other front-end framework, but I thought that it would be too much work for a simple thing.

- Python + Sanic

Instead of Python and Sanic, any other simple backend framework would solve it as well. Python is my preferable
programming language and Sanic is what I'm currently using (note: for further concerns about performance, Sanic would be better cuz its asynchronous processing requests), so that's basically why I chose them.

- Mongodb

This was an intended choice due to performance in search and ease of use.

## Build and Run

```
$ cd src
$ docker-compose build && docker-compose up
```

;)