Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 7 additions & 9 deletions .babelrc
Original file line number Diff line number Diff line change
@@ -1,15 +1,13 @@
{
"presets": [
"es2015",
"stage-0"
["env", {
"targets": {
"node": "8.11.2"
}
}]
],
"plugins": [
"transform-async-to-generator",
"transform-strict-mode", [
"transform-runtime", {
"polyfill": false,
"regenerator": true
}
]
"transform-class-properties",
"transform-object-rest-spread"
]
}
12 changes: 1 addition & 11 deletions .env.example
Original file line number Diff line number Diff line change
@@ -1,15 +1,5 @@
# Example .env file.

# The ip the API will be running on.
API_HOST=localhost

# The port the API will be running on.
API_PORT=3000

# The amount of API instances that should run.
API_WORKERS=2


# The ip of the MongoDB server.
MONGO_HOST=localhost

Expand All @@ -33,4 +23,4 @@ TRAKT_KEY=
FANART_KEY=

# API key for TMDB.
TMDB_KEY=
TMDB_KEY=
4 changes: 3 additions & 1 deletion .eslintrc
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,8 @@
"new-cap": "off",
"no-underscore-dangle": "off",
"no-plusplus": "off",
"import/prefer-default-export": "off"
"import/prefer-default-export": "off",
"camelcase": "warn",
"linebreak-style": "off"
}
}
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
# moviecast-api
MovieCast API - The API for MovieCast for getting updates and more
# MovieCast Scraper
A worker which scrapes torrents from multiple well known torrent sites.
Loading