forked from samuelclay/NewsBlur
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
More .gitignore, and adding cron jobs to fetch feeds. These will be r…
…eplaced by celery within the next day or two.
- Loading branch information
1 parent
cb59861
commit e9f5fc3
Showing
4 changed files
with
26 additions
and
0 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 |
---|---|---|
|
@@ -16,3 +16,4 @@ build/ | |
**/*.perspectivev* | ||
*.pbxuser | ||
data/ | ||
logs |
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 @@ | ||
<h1>NewsBlur is upgrading...</h1> | ||
|
||
<p>As of Sunday, August 22nd 8:30pm, NewsBlur is going through wonderful backend changes that will make it much, much faster. (PostgreSQL -> MongoDB, for you nerd types.)</p> | ||
|
||
<p>This change will take a few hours. Rest easy knowing I won't sleep until it's done.</p> |
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,9 @@ | ||
#!/bin/sh | ||
|
||
ps aux | grep refresh_feeds | egrep -v grep | awk '{print $2}' | xargs kill > /dev/null 2>&1 | ||
python /home/conesus/newsblur/manage.py refresh_feeds -s & | ||
python /home/conesus/newsblur/manage.py refresh_feeds -s & | ||
python /home/conesus/newsblur/manage.py refresh_feeds -s & | ||
python /home/conesus/newsblur/manage.py refresh_feeds -s & | ||
python /home/conesus/newsblur/manage.py refresh_feeds -s & | ||
python /home/conesus/newsblur/manage.py refresh_feeds -s & |
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,11 @@ | ||
#!/bin/sh | ||
|
||
ps aux | grep refresh_feeds | egrep -v grep | awk '{print $2}' | xargs kill > /dev/null 2>&1 | ||
python /home/conesus/newsblur/manage.py refresh_feeds -s > /dev/null 2>&1 & | ||
python /home/conesus/newsblur/manage.py refresh_feeds -s > /dev/null 2>&1 & | ||
python /home/conesus/newsblur/manage.py refresh_feeds -s > /dev/null 2>&1 & | ||
python /home/conesus/newsblur/manage.py refresh_feeds -s > /dev/null 2>&1 & | ||
python /home/conesus/newsblur/manage.py refresh_feeds -s > /dev/null 2>&1 & | ||
python /home/conesus/newsblur/manage.py refresh_feeds -s > /dev/null 2>&1 & | ||
python /home/conesus/newsblur/manage.py refresh_feeds -s > /dev/null 2>&1 & | ||
|