-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #13 from NathanWorkman/release/v0.3.0
Release/v0.3.0
- Loading branch information
Showing
60 changed files
with
5,329 additions
and
169 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,34 @@ | ||
|
||
# general things to ignore | ||
build/ | ||
dist/ | ||
*.egg-info/ | ||
*.egg | ||
*.py[cod] | ||
__pycache__/ | ||
*.so | ||
*~ | ||
/venv | ||
__pycache__ | ||
*.pyc | ||
*.sqlite3 | ||
.DS_Store | ||
|
||
# due to using tox and pytest | ||
.tox | ||
.cache | ||
.pytest_cache | ||
|
||
# node modules | ||
/node_modules | ||
|
||
# project dist static files | ||
seeker/static | ||
seeker/media | ||
/node_modules | ||
|
||
# project secrets | ||
.env | ||
|
||
# due to ansible logs | ||
*.log | ||
*.retry | ||
.env | ||
.DS_Store | ||
htmlcov |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
language: python | ||
|
||
python: | ||
- "3.6" | ||
|
||
install: | ||
- pip install setuptools --upgrade | ||
- pip install tox-travis | ||
- pip install -r requirements.txt | ||
|
||
script: | ||
- tox |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
{ | ||
"name": "seeker", | ||
"version": "1.0.0", | ||
"description": "Job Board Aggregator", | ||
"main": "index.js", | ||
"repository": "git@github.com:NathanWorkman/seeker.git", | ||
"author": "Nathan Workman <nathancworkman@gmail.com>", | ||
"license": "MIT", | ||
"private": false, | ||
"dependencies": { | ||
"browser-sync": "^2.18.13", | ||
"gulp": "^3.9.1", | ||
"gulp-autoprefixer": "^4.0.0", | ||
"gulp-concat": "^2.6.1", | ||
"gulp-cssnano": "^2.1.2", | ||
"gulp-load-plugins": "^1.5.0", | ||
"gulp-notify": "^3.0.0", | ||
"gulp-plumber": "^1.1.0", | ||
"gulp-sass": "^3.1.0", | ||
"gulp-sourcemaps": "^2.6.1", | ||
"gulp-spawn": "^0.4.0", | ||
"gulp-uglify": "^3.0.0", | ||
"gulp-util": "^3.0.8", | ||
"gulp-watch": "^4.3.11", | ||
"node-sass": "^4.5.3" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
from django.apps import AppConfig | ||
|
||
|
||
class CompanyConfig(AppConfig): | ||
name = 'company' |
2 changes: 1 addition & 1 deletion
2
seeker/companies/migrations/0001_initial.py → seeker/company/migrations/0001_initial.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
from scrapy.utils.project import get_project_settings | ||
from scrapy.crawler import CrawlerProcess | ||
|
||
setting = get_project_settings() | ||
process = CrawlerProcess(setting) | ||
# https://doc.scrapy.org/en/latest/topics/api.html#scrapy.crawler.CrawlerProcess | ||
|
||
for spider in process.spiders.list(): | ||
print("Running spider %s" % (spider)) | ||
process.crawl(spider) | ||
|
||
process.start() |
Oops, something went wrong.