- Precisa de Python 3.7 installed locally.
- Banco de dados MongoDb.
- Heroku CLI para rodar local e deploy Heroku CLI
# Clone the repository
$ git clone TODO
$ cd recomenda_easy
# Copy the sample env
$ cp sample.env .env
# Create a Python virtual environment
$ python -m venv env
$ source env/bin/activate
# Install dependecies
$ pip install -r requirements.txt
$ python run.py
Your app should now be running on localhost:3000.
# Criação dos arquivos JSON
$ scrapy runspider tccScrapperBooks.py -o livros.json
$ scrapy runspider tccScrapperComments.py -o comments.json
# Transformação dos comentarios
$ python transformationComments.py
# Importa no banco de dados Mongo.
$ mongoimport -h HOST -d DATABASE -c books -u USER -p PASSWORD --file livros.json --jsonArray
$ mongoimport -h HOST -d DATABASE -c comments -u USER -p PASSWORD --file comments.json --jsonArray
$ heroku create
$ git push heroku master
$ heroku open
ou
TODO