Updating README file. - seedlinux - Torrent indexing tool opensource torrents with share ratio's etc.
 (DIR) Log
 (DIR) Files
 (DIR) Refs
 (DIR) README
       ---
 (DIR) commit d5d9a3f330c2187f3e2ddbbc70ad22469bc11637
 (DIR) parent ce65210ce09947fbd735f56bd0da2454aa1c6218
 (HTM) Author: Jay Scott <me@jay.scot>
       Date:   Wed,  5 May 2021 20:42:55 +0100
       
       Updating README file.
       
       Diffstat:
         A README                              |      14 ++++++++++++++
         D README.md                           |      31 -------------------------------
       
       2 files changed, 14 insertions(+), 31 deletions(-)
       ---
 (DIR) diff --git a/README b/README
       @@ -0,0 +1,14 @@
       +
       +|> seedlinux
       +
       +Seedlinux is a WIP application to list open source torrents that need
       +help with seeders. If you are using MongoDB directly installed on your
       +local machine or else where then skip the docker commands and go
       +straight for the import command.
       +
       +usage:
       +
       +        $ docker pull mongo
       +        $ docker run -p 27017:27017 -ti --rm mongo
       +        $ mongoimport --db seedlinux --collection torrents --drop --file ./data/dataset.json
       +
 (DIR) diff --git a/README.md b/README.md
       @@ -1,31 +0,0 @@
       -# Seed Linux [![Build Status](https://travis-ci.org/beardyjay/seedlinux.svg?branch=master)](https://travis-ci.org/beardyjay/seedlinux)
       -
       -Seedlinux is a WIP application to list open source torrents that need help with seeders. 
       -
       -### Data import
       -
       -If you are using MongoDB directly installed on your local machine or else where then skip the docker commands and go straight for the the import command. 
       -
       -Pull the latest MongoDB docker image. 
       -
       -```bash
       -docker pull mongo
       -``` 
       -Run the docker image in a throw away container. 
       -
       -```bash
       -docker run -p 27017:27017 -ti --rm mongo
       -```
       -Seed the data using mongo-import tool. 
       -
       -```bash
       -mongoimport --db seedlinux --collection torrents --drop --file ./data/dataset.json
       -```
       -
       -### Stuff used to make this:
       -
       -  * [Docker](https://hub.docker.com/_/mongo/) image for MongoDB.
       -  * [MongoDB Import](https://docs.mongodb.com/getting-started/shell/import-data/) tool.
       -  * [ExpressJS](https://expressjs.com) web framework. 
       -  * [Semantic UI](https://semantic-ui.com) CSS framework.
       -