Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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.
- Host: GitHub
- URL: https://github.com/matheuscas/autocomplete-challenge
- Owner: matheuscas
- Created: 2017-11-18T01:11:02.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2017-11-18T01:20:47.000Z (about 7 years ago)
- Last Synced: 2024-12-19T20:24:40.270Z (16 days ago)
- Topics: autocomplete, autocomplete-search, jquery, jquery-plugin, mongodb, python3, sanic, sanic-framework
- Language: Python
- Size: 14.6 KB
- Stars: 3
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Autocomplete Test of Concept
## Technologies
- Jquery
- Python + Sanic
- Mongodb## Observations
- JqueryIt 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
```;)