Open arunnediyasala opened 6 years ago
As of a few months ago, Heroku switched the default Python runtime for newly created apps from Python 2.7 (which is what this application is compatible with) to Python 3.6. As such, you will need to force Heroku to use Python 2.7 with your instance. See documentation here.
You can accomplish this with the following commands (should work under Linux as well as Windows, in case you are using Windows):
$ echo python-2.7.14 > runtime.txt
$ git add runtime.txt
$ git commit -m "Add runtime.txt file to force Heroku to use Python 2.7"
$ git push heroku master
This application is not actively maintained any more, so we missed this change.
Hi, Because of Python 3.6 in Heroku I have removed wsgiref==0.1.2 and also updated static versions etc.I hope this change wont affect my deployment
Because of Python 3.6 in Heroku I have removed wsgiref==0.1.2
I would recommend you change the requirements.txt
file back to the master branch version, and simply try adding the runtime.txt
file first. We have not tested the application with newer versions of the Python library dependencies, and cannot be sure that everything will work if you do that.
Hi, I am getting a sample page like this https://enigmatic-gorge-49618.herokuapp.com/ I did not see any widget in my page....So xbeeWificloudkit is just a sample to create a webpage???
Something seems to have gone wrong with the application deployment. You should get a webpage that looks like https://xbeewifi.herokuapp.com
Run the following commands, then see if the app is working correctly:
$ git checkout origin/master -- requirements.txt package.json bower.json
$ git commit requirements.txt package.json bower.json -m "Revert library dependencies to upstream"
$ git push heroku master
(If the second command comes back with a message that ends with "no changes added to commit", then apparently that's not the issue.)
When I used the command git checkout origin/master -- requirements.txt package.json bower.json fatal: invalid reference: origin/master then I used git show-branch -a
*+ [master] master runtimefile
Then I used git checkout heroku/master -- requirements.txt package.json bower.json After that executed second command I am getting evert library dependencies to upstream" On branch master nothing to commit, working directory clean
Can you run the following command and tell me the output?
git remote -a
The intent of that git checkout
command is to revert the state of those 3 files to match the state of the current master branch of this GitHub repository. I assume you cloned this repository (using something like git clone https://github.com/digidotcom/xbeewificloudkit
, in which case this repo should be one of the remotes in your local copy).
Alternately, you could try this command: git checkout cc37a84c40 -- requirements.txt package.json bower.json
If instead of cloning this repository, you downloaded the files and started from there, you can run these commands:
$ git remote add origin https://github.com/digidotcom/xbeewificloudkit
$ git fetch origin
then run the git checkout command.
out put of git remote -a heroku https://git.heroku.com/enigmatic-gorge-49618.git (fetch) heroku https://git.heroku.com/enigmatic-gorge-49618.git (push)
out put of git remote -a
Thanks. Can you run the last set of commands I added to my previous command (git remote add
and git fetch
), then try the checkout command with origin/master
again? It should work then.
Sorry for the delay there is some internet issue from my side mean while git remote add " what I have to give here "
git remote add " what I have to give here "
Run these commands:
$ git remote add origin https://github.com/digidotcom/xbeewificloudkit
$ git fetch origin
then you should be able to run these commands:
$ git checkout origin/master -- requirements.txt package.json bower.json
$ git commit -m "Revert library dependencies to upstream" -- requirements.txt package.json bower.json
$ git push heroku master
Still I am getting the same https://enigmatic-gorge-49618.herokuapp.com/
git remote -v heroku https://git.heroku.com/enigmatic-gorge-49618.git (fetch) heroku https://git.heroku.com/enigmatic-gorge-49618.git (push) origin https://github.com/digidotcom/xbeewificloudkit (fetch) origin https://github.com/digidotcom/xbeewificloudkit (push)
It seems like you may need to purge the build cache (see https://help.heroku.com/18PI5RSY/how-do-i-clear-the-build-cache)... so run the following commands, then attach the deploy_log.txt file to a reply here:
$ heroku plugins:install heroku-repo
$ heroku repo:purge_cache -a enigmatic-gorge-49618
$ heroku repo:reset -a enigmatic-gorge-49618
$ git push heroku master > deploy_log.txt 2>&1
deploy_log.txt Thanks for your replay here I am attaching the log file.
Based on that log file, it does appear that the static asset build (done by JavaScript during the deploy) is succeeding. However, there is this message:
remote: -----> Python app detected
remote: ! The latest version of Python 2 is python-2.7.14 (you are using python-2.7.12, which is unsupported).
remote: ! We recommend upgrading by specifying the latest version (python-2.7.14).
remote: Learn More: https://devcenter.heroku.com/articles/python-runtimes
Can you look in the runtime.txt
file and make sure it says python-2.7.14
? Based on that error message it might say python-2.7.12
. If you do need to change it, run these commands:
$ echo python-2.7.14 > runtime.txt
$ git commit -m "Change Python to 2.7.14" -- runtime.txt
$ git push heroku master
Actually, hold on. Have you run heroku run python manage.py syncdb
now that you got the successful deploy using Python 2.7?
Yes I run that
heroku run python manage.py syncdb Running python manage.py syncdb on ⬢ enigmatic-gorge-49618... up, run.2723 (Free) Creating tables ... Installing custom SQL ... Installing indexes ... Installed 0 object(s) from 0 fixture(s)
I have python version 2.7.12 so I run like this echo python-2.7.12 > runtime.txt I hope I need python-2.7.14
Python app detected remote: -----> Found python-2.7.12, removing remote: -----> Installing python-2.7.14 remote: -----> Installing pip remote: -----> Installing requirements with pip Then also I am getting the same page ..
The version of Python that you have installed locally has no effect on what you should put in runtime.txt
. That file controls the version of Python that Heroku uses. Based on that error message in the log, it appears that Heroku officially supports 2.7.14, so that's what you should specify.
It looks like the issue might actually be in caching the static assets:
remote: -----> Caching build
remote: Clearing previous node cache
remote: Saving 2 cacheDirectories (default):
remote: - node_modules
remote: - bower_components (nothing to cache)
The static assets get built into a directory named static
, and it appears that Heroku is not caching that directory (based on my interpretation of this information). Try editing package.json
as follows:
"peerDependencies": {
"karma": "~0.10"
- }
+ },
+ "cacheDirectories": ["node_modules", "static"]
}
(add the "cacheDirectories" entry). Then:
$ git commit -m "Specify cacheDirectories" -- package.json
$ git push heroku master
This should help ensure that the front-end static files get cached in Heroku.
Caching build remote: Clearing previous node cache remote: Saving 2 cacheDirectories (package.json): remote: - node_modules remote: - static (nothing to cache) remote: remote: -----> Build succeeded! remote: ! This version of npm (2.13.5) does not support package-lock.json. Please
Getting same web page like previous result
remote: -----> Caching build remote: Clearing previous node cache remote: Saving 2 cacheDirectories (package.json): remote: - node_modules remote: - static (nothing to cache) remote: remote: -----> Build succeeded! remote: ! This version of npm (2.13.5) does not support package-lock.json. Please update your npm version in package.json. remote: https://devcenter.heroku.com/articles/nodejs-support#specifying-an-npm-version remote: remote: -----> Python app detected remote: -----> Installing requirements with pip remote: remote: -----> Discovering process types remote: Procfile declares types -> web remote: remote: -----> Compressing... remote: Done: 92.8M remote: -----> Launching... remote: Released v14 remote: https://enigmatic-gorge-49618.herokuapp.com/ deployed to Heroku remote: remote: Verifying deploy... done. To https://git.heroku.com/enigmatic-gorge-49618.git fe8e666..a6dff50 master -> master Now I not that my npm version . Is this is the real problem
Now I not that my npm version . Is this is the real problem
If you mean "this is not the same version of NPM that I have installed on my PC", then no. Heroku builds and runs the application inside what is more or less a virtual machine in the cloud. What versions of Python and Node and NPM you have installed on your personal machine does not matter.
Getting same web page like previous result
Sorry, I was wrong about which directory contains the static assets. Turns out it's inside prod/static
. So on the cacheDirectories line of package.json, change "static"
to "prod"
. Then:
$ git commit -m "Cache the correct directory for front-end assets" -- package.json
$ git push heroku master
When I updated package.json and then I try to push it in to heroku sudo git push heroku master Everything up-to-date same webpage I am getting
After editing package.json, did you commit the change? (First command in my previous comment)
yes.I am following the same
Based on this:
sudo git push heroku master Everything up-to-date
It does not appear that the deployment to Heroku did anything. What if you run the git push heroku master
command without sudo
? (You shouldn't need to use sudo
for these Git operations)
git push heroku master error: update_ref failed for ref 'refs/remotes/heroku/master': cannot lock ref 'refs/remotes/heroku/master': Unable to create '/home/arun/Downloads/xbeewificloudkit-master/.git/refs/remotes/heroku/master.lock': Permission denied Everything up-to-date But when I run sudo git push heroku master Everything up-to-date
Okay, that error is probably because you had used sudo
previously.
Can you send me the output of this command?
git log --decorate -n 3
git log --decorate -n 3 commit 35908f20f7919c89cb59145c6a07a957daed022d (HEAD -> master, heroku/master) Author: ArunSoman arunnediyasala@gmail.com Date: Tue Jan 2 16:56:10 2018 -0600
npm version update
commit 58e316bc3d9a1608f598926af0591427b98a95a1 Author: ArunSoman arunnediyasala@gmail.com Date: Tue Jan 2 16:51:41 2018 -0600
npm version update
commit a6dff504be2475b8fbf71d4a68695447ca05423f Author: ArunSoman arunnediyasala@gmail.com Date: Tue Jan 2 16:40:14 2018 -0600
Specify cachDirectories
How about:
git log --decorate -n 3 --patch
commit 35908f20f7919c89cb59145c6a07a957daed022d (HEAD -> master, heroku/master) Author: ArunSoman arunnediyasala@gmail.com Date: Tue Jan 2 16:56:10 2018 -0600
npm version update
diff --git a/package.json b/package.json index 0788261..835b101 100644 --- a/package.json +++ b/package.json @@ -28,7 +28,7 @@ }, "engines": { "node": "0.10.x",
commit 58e316bc3d9a1608f598926af0591427b98a95a1 Author: ArunSoman arunnediyasala@gmail.com Date: Tue Jan 2 16:51:41 2018 -0600
npm version update
diff --git a/package.json b/package.json index 6db870b..0788261 100644 --- a/package.json +++ b/package.json @@ -28,7 +28,7 @@ }, "engines": { "node": "0.10.x", :
Let's force a rebuild then:
$ heroku repo:purge_cache -a enigmatic-gorge-49618
$ heroku repo:reset -a enigmatic-gorge-49618
$ git push heroku master
remote: Verifying deploy... done. To https://git.heroku.com/enigmatic-gorge-49618.git
Then I run the command heroku run python manage.py syncdb
sudo git push heroku master
then.
Or to (hopefully) avoid the need for more use of sudo
:
sudo rm -f .git/refs/remotes/heroku/master.lock
git push heroku master
Hang on... that error is coming out on your local side, after pushing to Heroku has succeeded. So do remove the master.lock file as I said in the command above. But that's not causing any problems pushing to Heroku...
sudo git push heroku maste
You made a typo. That should be master.
Sorry
same like previous sudo git push heroku master Everything up-to-date
heroku run python manage.py syncdb Running python manage.py syncdb on ⬢ enigmatic-gorge-49618... up, run.3906 (Free) Creating tables ... Installing custom SQL ... Installing indexes ... Installed 0 object(s) from 0 fixture(s)
Run this:
heroku logs -n 100
and paste the output in a comment here, but surround it with 3 backticks. So instead of submitting a comment like:
Hi, this is the output:
<pasted output>
submit one like this:
Hi, this is the output:
```
<pasted output>
```
This will make sure the output doesn't get parsed as Markdown.
Hi this is the output:
heroku logs -n 100
2018-01-02T23:35:02.296096+00:00 app[api]: tar -zxf ../repo-cache.tgz
2018-01-02T23:35:02.296096+00:00 app[api]: TMPDIR=`mktemp -d`
2018-01-02T23:35:02.296096+00:00 app[api]: cp -rf $METADATA $TMPDIR
2018-01-02T23:35:02.296096+00:00 app[api]: fi
2018-01-02T23:35:02.296096+00:00 app[api]: cd ..
2018-01-02T23:35:02.296096+00:00 app[api]: rm -rf unpack
2018-01-02T23:35:02.296096+00:00 app[api]: mkdir unpack
2018-01-02T23:35:02.296096+00:00 app[api]: cd unpack
2018-01-02T23:35:02.296096+00:00 app[api]: TMPDATA="$TMPDIR/heroku"
2018-01-02T23:35:02.296096+00:00 app[api]: if [ -d "$TMPDATA" ]; then
2018-01-02T23:35:02.296096+00:00 app[api]: VENDOR="vendor"
2018-01-02T23:35:02.296096+00:00 app[api]: rm -rf $TMPDIR
2018-01-02T23:35:02.296096+00:00 app[api]: mkdir $VENDOR
2018-01-02T23:35:02.296096+00:00 app[api]: cp -rf $TMPDATA $VENDOR
2018-01-02T23:35:02.296096+00:00 app[api]: tar -zcf ../cache-repack.tgz .
2018-01-02T23:35:02.296096+00:00 app[api]: fi
2018-01-02T23:35:02.296096+00:00 app[api]: curl -o /dev/null --upload-file ../cache-repack.tgz 'https://s3-external-1.amazonaws.com/heroku_repos/heroku.com/cache/84336571.tgz?AWSAccessKeyId=AKIAJQEIEH544PNXTZNQ&Signature=jxBpmOXK15ah0cV0zfMTN5AkOp4%3D&Expires=1514939701'
2018-01-02T23:35:02.296096+00:00 app[api]: exit` by user arunnediyasala@gmail.com
2018-01-02T23:35:10.879166+00:00 heroku[run.3893]: Awaiting client
2018-01-02T23:35:10.936880+00:00 heroku[run.3893]: Starting process with command `set -e mkdir -p tmp/repo_tmp/unpack cd tmp/repo_tmp curl -o repo-cache.tgz 'https://s3-external-1.amazonaws.com/heroku_repos/heroku.com/cache/84336571.tgz?AWSAccessKeyId=AKIAJQEIEH544PNXTZNQ&Signature=OttXkOMg4tpzIe8oh%2ByRpDWhJME%3D&Expires=1514939701' cd unpack tar -zxf ../repo-cache.tgz METADATA="vendor/heroku" if [ -d "$METADATA" ]; then TMPDIR=`mktemp -d` cp -rf $METADATA $TMPDIR fi cd .. rm -rf unpack mkdir unpack cd unpack TMPDATA="$TMPDIR/heroku" VENDOR="vendor" if [ -d "$TMPDATA" ]; then mkdir $VENDOR cp -rf $TMPDATA $VENDOR rm -rf $TMPDIR fi tar -zcf ../cache-repack.tgz . curl -o /dev/null --upload-file ../cache-repack.tgz 'https://s3-external-1.amazonaws.com/heroku_repos/heroku.com/cache/84336571.tgz?AWSAccessKeyId=AKIAJQEIEH544PNXTZNQ&Signature=jxBpmOXK15ah0cV0zfMTN5AkOp4%3D&Expires=1514939701' exit`
2018-01-02T23:35:10.966936+00:00 heroku[run.3893]: State changed from starting to up
2018-01-02T23:35:17.524729+00:00 app[web.1]: 2018-01-02 23:35:17.524 27 LOG Stats: 0 req/s, in 0 b/s, out 0 b/s,query 0 us
2018-01-02T23:35:22.107586+00:00 heroku[run.3893]: Process exited with status 0
2018-01-02T23:35:22.121824+00:00 heroku[run.3893]: State changed from up to complete
2018-01-02T23:35:52.000000+00:00 app[api]: Build started by user arunnediyasala@gmail.com
2018-01-02T23:36:17.525267+00:00 app[web.1]: 2018-01-02 23:36:17.525 27 LOG Stats: 0 req/s, in 0 b/s, out 0 b/s,query 0 us
2018-01-02T23:37:17.526122+00:00 app[web.1]: 2018-01-02 23:37:17.526 27 LOG Stats: 0 req/s, in 0 b/s, out 0 b/s,query 0 us
2018-01-02T23:38:17.526728+00:00 app[web.1]: 2018-01-02 23:38:17.526 27 LOG Stats: 0 req/s, in 0 b/s, out 0 b/s,query 0 us
2018-01-02T23:39:15.969400+00:00 app[api]: Deploy 35908f20 by user arunnediyasala@gmail.com
2018-01-02T23:39:16.645027+00:00 heroku[web.1]: Restarting
2018-01-02T23:39:16.645587+00:00 heroku[web.1]: State changed from up to starting
2018-01-02T23:35:52.000000+00:00 app[api]: Build succeeded
2018-01-02T23:39:17.275550+00:00 heroku[web.1]: Stopping all processes with SIGTERM
2018-01-02T23:39:17.284016+00:00 app[web.1]: 2018-01-02 23:39:17.283 27 LOG Got SIGTERM, ignoring!
2018-01-02T23:39:17.284343+00:00 app[web.1]: 2018-01-02 17:39:17 [35] [INFO] Worker exiting (pid: 35)
2018-01-02T23:39:17.386304+00:00 app[web.1]: 2018-01-02 23:39:17 [29] [INFO] Shutting down: Master
2018-01-02T23:39:17.284835+00:00 app[web.1]: 2018-01-02 23:39:17 [29] [INFO] Handling signal: term
2018-01-02T23:39:17.407813+00:00 app[web.1]: buildpack=pgbouncer at=kill-app pid=28
2018-01-02T23:39:17.408073+00:00 app[web.1]: bin/start-pgbouncer-stunnel: line 51: kill: (-28) - No such process
2018-01-02T23:39:17.408110+00:00 app[web.1]: buildpack=pgbouncer at=wait-app pid=28
2018-01-02T23:39:17.405441+00:00 app[web.1]: buildpack=pgbouncer at=exit process=app
2018-01-02T23:39:17.405433+00:00 app[web.1]: buildpack=pgbouncer at=app-end
2018-01-02T23:39:17.408205+00:00 app[web.1]: buildpack=pgbouncer at=kill-aux name=pgbouncer pid=26 signal=SIGINT
2018-01-02T23:39:17.408518+00:00 app[web.1]: buildpack=pgbouncer at=pgbouncer-end
2018-01-02T23:39:17.408661+00:00 app[web.1]: buildpack=pgbouncer at=stunnel-end
2018-01-02T23:39:17.408283+00:00 app[web.1]: buildpack=pgbouncer at=kill-aux name=stunnel pid=24 signal=SIGINT
2018-01-02T23:39:17.408938+00:00 app[web.1]: 2018-01-02 23:39:17.408 27 LOG Got SIGINT, shutting down
2018-01-02T23:39:15.969400+00:00 app[api]: Release v17 created by user arunnediyasala@gmail.com
2018-01-02T23:39:17.507958+00:00 heroku[web.1]: Process exited with status 0
2018-01-02T23:39:29.323956+00:00 app[web.1]: buildpack=pgbouncer at=pgbouncer-enabled
2018-01-02T23:39:29.323968+00:00 app[web.1]: buildpack=pgbouncer at=config-gen-start
2018-01-02T23:39:29.375425+00:00 app[web.1]: buildpack=pgbouncer at=config-gen-end
2018-01-02T23:39:29.357155+00:00 app[web.1]: Setting DATABASE_URL_PGBOUNCER config var
2018-01-02T23:39:29.375525+00:00 app[web.1]: buildpack=pgbouncer at=config-gen-override DATABASE_URL
2018-01-02T23:39:29.386497+00:00 app[web.1]: buildpack=pgbouncer at=stunnel-launched pid=24 signal=SIGINT
2018-01-02T23:39:29.386981+00:00 app[web.1]: buildpack=pgbouncer at=pgbouncer-launched pid=25 signal=SIGINT
2018-01-02T23:39:29.387541+00:00 app[web.1]: buildpack=pgbouncer at=app-launched pid=26
2018-01-02T23:39:29.387725+00:00 app[web.1]: buildpack=pgbouncer at=app-start
2018-01-02T23:39:29.388046+00:00 app[web.1]: buildpack=pgbouncer at=pgbouncer-start
2018-01-02T23:39:29.388674+00:00 app[web.1]: buildpack=pgbouncer at=stunnel-start
2018-01-02T23:39:29.401300+00:00 app[web.1]: 2018-01-02 23:39:29.401 28 LOG File descriptor limit: 10000 (H:10000), max_client_conn: 100, max fds possible: 111
2018-01-02T23:39:29.402052+00:00 app[web.1]: 2018-01-02 23:39:29.402 28 LOG listening on 127.0.0.1:6000
2018-01-02T23:39:29.402161+00:00 app[web.1]: 2018-01-02 23:39:29.402 28 LOG listening on unix:/tmp/.s.PGSQL.6000
2018-01-02T23:39:29.402210+00:00 app[web.1]: 2018-01-02 23:39:29.402 28 LOG process up: pgbouncer 1.7.2, libevent 2.0.21-stable (epoll), adns: evdns2, tls: OpenSSL 1.0.2g 1 Mar 2016
2018-01-02T23:39:29.415868+00:00 app[web.1]: 2018.01.02 23:39:29 LOG5[ui]: stunnel 5.40 on x86_64-unknown-linux-gnu platform
2018-01-02T23:39:29.416081+00:00 app[web.1]: 2018.01.02 23:39:29 LOG5[ui]: Compiled/running with OpenSSL 1.0.2g 1 Mar 2016
2018-01-02T23:39:29.416282+00:00 app[web.1]: 2018.01.02 23:39:29 LOG5[ui]: Threading:PTHREAD Sockets:POLL,IPv6,SYSTEMD TLS:ENGINE,FIPS,OCSP,PSK,SNI Auth:LIBWRAP
2018-01-02T23:39:29.416481+00:00 app[web.1]: 2018.01.02 23:39:29 LOG5[ui]: Reading configuration from file /app/vendor/stunnel/stunnel-pgbouncer.conf
2018-01-02T23:39:29.416694+00:00 app[web.1]: 2018.01.02 23:39:29 LOG5[ui]: UTF-8 byte order mark not detected
2018-01-02T23:39:29.416886+00:00 app[web.1]: 2018.01.02 23:39:29 LOG5[ui]: FIPS mode disabled
2018-01-02T23:39:29.417092+00:00 app[web.1]: 2018.01.02 23:39:29 LOG4[ui]: Service [DATABASE_URL] needs authentication to prevent MITM attacks
2018-01-02T23:39:29.417286+00:00 app[web.1]: 2018.01.02 23:39:29 LOG5[ui]: Configuration successful
2018-01-02T23:39:30.247213+00:00 app[web.1]: 2018-01-02 23:39:30 [27] [INFO] Starting gunicorn 18.0
2018-01-02T23:39:30.252462+00:00 app[web.1]: 2018-01-02 23:39:30 [27] [INFO] Listening at: http://0.0.0.0:8626 (27)
2018-01-02T23:39:30.252662+00:00 app[web.1]: 2018-01-02 23:39:30 [27] [INFO] Using worker: socketio.sgunicorn.GeventSocketIOWorker
2018-01-02T23:39:30.268600+00:00 app[web.1]: 2018-01-02 23:39:30 [35] [INFO] Booting worker with pid: 35
2018-01-02T23:39:30.662187+00:00 heroku[web.1]: State changed from starting to up
2018-01-02T23:39:26.854198+00:00 heroku[web.1]: Starting process with command `bin/start-pgbouncer-stunnel newrelic-admin run-program gunicorn --worker-class socketio.sgunicorn.GeventSocketIOWorker xbeewifiapp.wsgi`
2018-01-02T23:39:42.981255+00:00 app[api]: Starting process with command `python manage.py syncdb` by user arunnediyasala@gmail.com
2018-01-02T23:39:51.339314+00:00 heroku[run.9924]: Awaiting client
2018-01-02T23:39:51.361143+00:00 heroku[run.9924]: Starting process with command `python manage.py syncdb`
2018-01-02T23:39:51.517683+00:00 heroku[run.9924]: State changed from starting to up
2018-01-02T23:39:56.385950+00:00 heroku[run.9924]: Process exited with status 0
2018-01-02T23:39:56.396892+00:00 heroku[run.9924]: State changed from up to complete
2018-01-02T23:40:00.234591+00:00 heroku[router]: at=info method=GET path="/static/vendor/select2/select2.css" host=enigmatic-gorge-49618.herokuapp.com request_id=b8e02be2-91ae-4e84-9a3f-571a0fd9f222 fwd="73.246.51.39" dyno=web.1 connect=1ms service=16ms status=404 bytes=174 protocol=https
2018-01-02T23:40:00.161398+00:00 heroku[router]: at=info method=GET path="/" host=enigmatic-gorge-49618.herokuapp.com request_id=a3689bb3-97ba-4648-935a-14ee0ffc8995 fwd="73.246.51.39" dyno=web.1 connect=1ms service=400ms status=200 bytes=4091 protocol=https
2018-01-02T23:40:00.238243+00:00 heroku[router]: at=info method=GET path="/static/assets/xbee-wifi-cloud-kit.css" host=enigmatic-gorge-49618.herokuapp.com request_id=b38dc157-b0a5-46dc-98fb-fe4f9e05eab9 fwd="73.246.51.39" dyno=web.1 connect=1ms service=20ms status=404 bytes=252 protocol=https
2018-01-02T23:40:00.277606+00:00 heroku[router]: at=info method=GET path="/static/assets/Logo_XBee_sml.png" host=enigmatic-gorge-49618.herokuapp.com request_id=17ad1b2e-a0f8-4852-bddb-a92aebbc6bbc fwd="73.246.51.39" dyno=web.1 connect=1ms service=2ms status=404 bytes=304 protocol=https
2018-01-02T23:40:00.237397+00:00 heroku[router]: at=info method=GET path="/static/vendor/jquery-ui/themes/start/jquery.ui.theme.css" host=enigmatic-gorge-49618.herokuapp.com request_id=4aebc258-9a2d-4a42-b94a-076bcdc0ad74 fwd="73.246.51.39" dyno=web.1 connect=1ms service=19ms status=404 bytes=226 protocol=https
2018-01-02T23:40:00.229503+00:00 heroku[router]: at=info method=GET path="/static/vendor/jquery-ui/themes/base/jquery.ui.slider.css" host=enigmatic-gorge-49618.herokuapp.com request_id=2c2ca859-9f97-473b-8183-eb34bc78a469 fwd="73.246.51.39" dyno=web.1 connect=1ms service=18ms status=404 bytes=122 protocol=https
2018-01-02T23:40:00.235810+00:00 heroku[router]: at=info method=GET path="/static/vendor/toastr/toastr.min.css" host=enigmatic-gorge-49618.herokuapp.com request_id=187522cc-966b-4c0e-8214-237f1b22e852 fwd="73.246.51.39" dyno=web.1 connect=1ms service=17ms status=404 bytes=200 protocol=https
2018-01-02T23:40:00.270586+00:00 heroku[router]: at=info method=GET path="/static/assets/xbee-wifi-cloud-kit.js" host=enigmatic-gorge-49618.herokuapp.com request_id=744ba385-5413-42b7-be81-2d1f6bc3aeb2 fwd="73.246.51.39" dyno=web.1 connect=1ms service=2ms status=404 bytes=278 protocol=https
2018-01-02T23:40:00.228250+00:00 app[web.1]: [Errno 2] No such file or directory: 'staticfiles/vendor/jquery-ui/themes/base/jquery.ui.slider.css'
2018-01-02T23:40:00.229654+00:00 app[web.1]: [Errno 2] No such file or directory: 'staticfiles/vendor/jquery-ui/themes/base/jquery.ui.progressbar.css'
2018-01-02T23:40:00.234704+00:00 app[web.1]: [Errno 2] No such file or directory: 'staticfiles/vendor/toastr/toastr.min.css'
2018-01-02T23:40:00.235963+00:00 app[web.1]: [Errno 2] No such file or directory: 'staticfiles/vendor/jquery-ui/themes/start/jquery.ui.theme.css'
2018-01-02T23:40:00.236898+00:00 app[web.1]: [Errno 2] No such file or directory: 'staticfiles/assets/xbee-wifi-cloud-kit.css'
2018-01-02T23:40:00.269457+00:00 app[web.1]: [Errno 2] No such file or directory: 'staticfiles/assets/xbee-wifi-cloud-kit.js'
2018-01-02T23:40:00.276165+00:00 app[web.1]: [Errno 2] No such file or directory: 'staticfiles/assets/Logo_XBee_sml.png'
2018-01-02T23:40:00.233681+00:00 app[web.1]: [Errno 2] No such file or directory: 'staticfiles/vendor/select2/select2.css'
2018-01-02T23:40:00.230892+00:00 heroku[router]: at=info method=GET path="/static/vendor/jquery-ui/themes/base/jquery.ui.progressbar.css" host=enigmatic-gorge-49618.herokuapp.com request_id=793c4757-18d0-4ca6-93a5-ac429221fdc6 fwd="73.246.51.39" dyno=web.1 connect=0ms service=19ms status=404 bytes=148 protocol=https
Try this:
heroku run python manage.py collectstatic --noinput
Out put is
heroku run python manage.py collectstatic --noinput
Running python manage.py collectstatic --noinput on ⬢ enigmatic-gorge-49618... up, run.4113 (Free)
Copying '/app/xbeewifiapp/static/js/bootstrap.min.js'
Copying '/app/xbeewifiapp/static/js/test.js'
Copying '/app/xbeewifiapp/static/js/socket.io.js'
Copying '/app/xbeewifiapp/static/css/bootstrap.min.css'
Copying '/app/prod/static/index.html'
Copying '/app/prod/static/assets/XBee_S6B.png'
Copying '/app/prod/static/assets/Logo_XBee_sml.png'
Copying '/app/prod/static/assets/xbee-wifi-cloud-kit.js'
Copying '/app/prod/static/assets/Logo_Digi.png'
Copying '/app/prod/static/assets/xbee-wifi-cloud-kit.css'
Copying '/app/prod/static/assets/ui-bg_highlight-soft_75_cccccc_1x100_vertical.png'
Copying '/app/prod/static/assets/background-gradient.png'
Copying '/app/prod/static/assets/tilt-widget/base.png'
Copying '/app/prod/static/assets/tilt-widget/top.png'
Copying '/app/prod/static/assets/tilt-widget/ball.png'
Copying '/app/prod/static/assets/jquery-ui/jquery-ui.min.css'
Copying '/app/prod/static/assets/jquery-ui/images/ui-icons_2e83ff_256x240.png'
Copying '/app/prod/static/assets/jquery-ui/images/ui-icons_454545_256x240.png'
Copying '/app/prod/static/assets/jquery-ui/images/ui-bg_glass_75_dadada_1x400.png'
Copying '/app/prod/static/assets/jquery-ui/images/ui-bg_glass_75_e6e6e6_1x400.png'
Copying '/app/prod/static/assets/jquery-ui/images/ui-bg_flat_75_ffffff_40x100.png'
Copying '/app/prod/static/assets/jquery-ui/images/ui-icons_888888_256x240.png'
Copying '/app/prod/static/assets/jquery-ui/images/ui-bg_highlight-soft_75_cccccc_1x100.png'
Copying '/app/prod/static/assets/jquery-ui/images/ui-bg_glass_65_ffffff_1x400.png'
Copying '/app/prod/static/assets/jquery-ui/images/ui-bg_glass_95_fef1ec_1x400.png'
Copying '/app/prod/static/assets/jquery-ui/images/animated-overlay.gif'
Copying '/app/prod/static/assets/jquery-ui/images/ui-bg_flat_0_aaaaaa_40x100.png'
Copying '/app/prod/static/assets/jquery-ui/images/ui-icons_222222_256x240.png'
Copying '/app/prod/static/assets/jquery-ui/images/ui-icons_cd0a0a_256x240.png'
Copying '/app/prod/static/assets/jquery-ui/images/ui-bg_glass_55_fbf9ee_1x400.png'
Copying '/app/prod/static/vendor/select2/select2.png'
Copying '/app/prod/static/vendor/select2/select2-spinner.gif'
Copying '/app/prod/static/vendor/select2/select2.css'
Copying '/app/prod/static/vendor/toastr/toastr.min.css'
Copying '/app/prod/static/vendor/jquery-ui/themes/start/jquery.ui.theme.css'
Copying '/app/prod/static/vendor/jquery-ui/themes/start/images/ui-icons_056b93_256x240.png'
Copying '/app/prod/static/vendor/jquery-ui/themes/start/images/ui-icons_f5e175_256x240.png'
Copying '/app/prod/static/vendor/jquery-ui/themes/start/images/ui-icons_0078ae_256x240.png'
Copying '/app/prod/static/vendor/jquery-ui/themes/start/images/ui-icons_d8e7f3_256x240.png'
Copying '/app/prod/static/vendor/jquery-ui/themes/start/images/ui-bg_gloss-wave_50_6eac2c_500x100.png'
Copying '/app/prod/static/vendor/jquery-ui/themes/start/images/ui-bg_glass_55_f8da4e_1x400.png'
Copying '/app/prod/static/vendor/jquery-ui/themes/start/images/ui-icons_e0fdff_256x240.png'
Copying '/app/prod/static/vendor/jquery-ui/themes/start/images/ui-bg_glass_75_79c9ec_1x400.png'
Copying '/app/prod/static/vendor/jquery-ui/themes/start/images/ui-bg_gloss-wave_75_2191c0_500x100.png'
Copying '/app/prod/static/vendor/jquery-ui/themes/start/images/ui-bg_gloss-wave_45_e14f1c_500x100.png'
Copying '/app/prod/static/vendor/jquery-ui/themes/start/images/ui-icons_f7a50d_256x240.png'
Copying '/app/prod/static/vendor/jquery-ui/themes/start/images/ui-bg_flat_55_999999_40x100.png'
Copying '/app/prod/static/vendor/jquery-ui/themes/start/images/ui-bg_glass_45_0078ae_1x400.png'
Copying '/app/prod/static/vendor/jquery-ui/themes/start/images/ui-bg_flat_75_aaaaaa_40x100.png'
Copying '/app/prod/static/vendor/jquery-ui/themes/start/images/animated-overlay.gif'
Copying '/app/prod/static/vendor/jquery-ui/themes/start/images/ui-bg_inset-hard_100_fcfdfd_1x100.png'
Copying '/app/prod/static/vendor/jquery-ui/themes/start/images/ui-icons_fcd113_256x240.png'
Copying '/app/prod/static/vendor/jquery-ui/themes/base/jquery.ui.progressbar.css'
Copying '/app/prod/static/vendor/jquery-ui/themes/base/jquery.ui.slider.css'
Copying '/app/prod/static/vendor/jquery-ui/themes/base/images/ui-icons_2e83ff_256x240.png'
Copying '/app/prod/static/vendor/jquery-ui/themes/base/images/ui-icons_454545_256x240.png'
Copying '/app/prod/static/vendor/jquery-ui/themes/base/images/ui-bg_glass_75_dadada_1x400.png'
Copying '/app/prod/static/vendor/jquery-ui/themes/base/images/ui-bg_glass_75_e6e6e6_1x400.png'
Copying '/app/prod/static/vendor/jquery-ui/themes/base/images/ui-bg_flat_75_ffffff_40x100.png'
Copying '/app/prod/static/vendor/jquery-ui/themes/base/images/ui-icons_888888_256x240.png'
Copying '/app/prod/static/vendor/jquery-ui/themes/base/images/ui-bg_highlight-soft_75_cccccc_1x100.png'
Copying '/app/prod/static/vendor/jquery-ui/themes/base/images/ui-bg_glass_65_ffffff_1x400.png'
Copying '/app/prod/static/vendor/jquery-ui/themes/base/images/ui-bg_glass_95_fef1ec_1x400.png'
Copying '/app/prod/static/vendor/jquery-ui/themes/base/images/animated-overlay.gif'
Copying '/app/prod/static/vendor/jquery-ui/themes/base/images/ui-bg_flat_0_aaaaaa_40x100.png'
Copying '/app/prod/static/vendor/jquery-ui/themes/base/images/ui-icons_222222_256x240.png'
Copying '/app/prod/static/vendor/jquery-ui/themes/base/images/ui-icons_cd0a0a_256x240.png'
Copying '/app/prod/static/vendor/jquery-ui/themes/base/images/ui-bg_glass_55_fbf9ee_1x400.png'
Copying '/app/prod/static/src/app/widgets/serialWidget/serialWidget.tpl.html'
Copying '/app/prod/static/src/app/widgets/serialWidget/serialWidget.js'
Copying '/app/prod/static/src/app/widgets/serialWidget/serialWidget.css'
Copying '/app/prod/static/src/app/widgets/timeoutWidget/timeoutWidget.js'
Copying '/app/prod/static/src/app/widgets/timeoutWidget/timeoutWidget.tpl.html'
Copying '/app/prod/static/src/app/widgets/onOffDisplayWidget/onOffDisplayWidget.js'
Copying '/app/prod/static/src/app/widgets/onOffDisplayWidget/onOffDisplayWidget.tpl.html'
Copying '/app/prod/static/src/app/widgets/switchWidget/switchWidget.js'
Copying '/app/prod/static/src/app/widgets/switchWidget/switchWidget.css'
Copying '/app/prod/static/src/app/widgets/switchWidget/switchWidget.tpl.html'
Copying '/app/prod/static/src/app/widgets/errorWidget/errorWidget.css'
Copying '/app/prod/static/src/app/widgets/errorWidget/errorWidget.tpl.html'
Copying '/app/prod/static/src/app/widgets/errorWidget/errorWidget.js'
Copying '/app/prod/static/src/app/widgets/errorWidget/errorWidget-modal.tpl.html'
Copying '/app/prod/static/src/app/widgets/barGraphWidget/barGraphWidget.less'
Copying '/app/prod/static/src/app/widgets/barGraphWidget/barGraphWidget.tpl.html'
Copying '/app/prod/static/src/app/widgets/barGraphWidget/barGraphWidget.js'
Copying '/app/prod/static/src/app/widgets/gaugeWidget/gaugeWidget.tpl.html'
Copying '/app/prod/static/src/app/widgets/gaugeWidget/gaugeWidget.css'
Copying '/app/prod/static/src/app/widgets/gaugeWidget/gaugeWidget.js'
Copying '/app/prod/static/src/app/widgets/tiltWidget/tiltWidget.js'
Copying '/app/prod/static/src/app/widgets/tiltWidget/tiltWidget.tpl.html'
Copying '/app/prod/static/src/app/widgets/tiltWidget/tiltWidget.css'
Copying '/app/prod/static/src/app/widgets/sliderWidget/sliderWidget.css'
Copying '/app/prod/static/src/app/widgets/sliderWidget/sliderWidget.js'
Copying '/app/prod/static/src/app/widgets/sliderWidget/sliderWidget.tpl.html'
Copying '/app/prod/static/src/app/widgets/lineGraphWidget/lineGraphWidget.tpl.html'
Copying '/app/prod/static/src/app/widgets/lineGraphWidget/lineGraphWidget.js'
Copying '/app/prod/static/src/app/widgets/barGraphVerticalWidget/barGraphVerticalWidget.less'
Copying '/app/prod/static/src/app/widgets/barGraphVerticalWidget/barGraphVerticalWidget.tpl.html'
Copying '/app/prod/static/src/app/widgets/barGraphVerticalWidget/barGraphVerticalWidget.js'
Copying '/app/build/static/templates-app.js'
Copying '/app/build/static/templates-common.js'
Copying '/app/build/static/vendor/socket.io-client/dist/socket.io.js'
Copying '/app/build/static/vendor/justgage/justgage.js'
Copying '/app/build/static/vendor/angular/angular.js'
Copying '/app/build/static/vendor/raphael/raphael-min.js'
Copying '/app/build/static/vendor/angular-cookies/angular-cookies.min.js'
Copying '/app/build/static/vendor/lodash/dist/lodash.min.js'
Copying '/app/build/static/vendor/bootstrap/js/dropdown.js'
Copying '/app/build/static/vendor/bootstrap/js/tooltip.js'
Copying '/app/build/static/vendor/select2/select2.js'
Copying '/app/build/static/vendor/jquery-color/jquery.color.js'
Copying '/app/build/static/vendor/restangular/dist/restangular.js'
Copying '/app/build/static/vendor/angular-ui-utils/modules/keypress/keypress.js'
Copying '/app/build/static/vendor/angular-ui-utils/modules/route/route.js'
Copying '/app/build/static/vendor/angular-ui-utils/modules/mask/mask.js'
Copying '/app/build/static/vendor/toastr/toastr.js'
Copying '/app/build/static/vendor/jquery/jquery.js'
Copying '/app/build/static/vendor/angular-bootstrap/ui-bootstrap-tpls.js'
Copying '/app/build/static/vendor/jquery-ui/ui/minified/jquery.ui.widget.min.js'
Copying '/app/build/static/vendor/jquery-ui/ui/minified/jquery.ui.effect.min.js'
Copying '/app/build/static/vendor/jquery-ui/ui/minified/jquery.ui.mouse.min.js'
Copying '/app/build/static/vendor/jquery-ui/ui/minified/jquery.ui.core.min.js'
Copying '/app/build/static/vendor/jquery-ui/ui/minified/jquery.ui.slider.min.js'
Copying '/app/build/static/vendor/jquery-ui/ui/minified/jquery.ui.progressbar.min.js'
Copying '/app/build/static/vendor/jquery-ui/ui/minified/jquery.ui.effect-fade.min.js'
Copying '/app/build/static/vendor/jquery-ui/ui/minified/jquery.ui.position.min.js'
Copying '/app/build/static/vendor/angular-ui-router/release/angular-ui-router.js'
Copying '/app/build/static/src/common/listenerTree.js'
Copying '/app/build/static/src/common/ie-fixes/console.js'
Copying '/app/build/static/src/common/jquery-plugins/jquery.color.svg-names.js'
Copying '/app/build/static/src/common/jquery-plugins/jquery.ui.progressbar.animated.js'
Copying '/app/build/static/src/common/jquery-plugins/jquery.flot.tooltip.js'
Copying '/app/build/static/src/common/directives/timestampTooltip.js'
Copying '/app/build/static/src/common/directives/flipSwitch.js'
Copying '/app/build/static/src/common/directives/progressbars/progressBar.js'
Copying '/app/build/static/src/common/directives/gauge/gauge.js'
Copying '/app/build/static/src/common/directives/external/capitalizeFirst.js'
Copying '/app/build/static/src/common/directives/external/showOnHoverGrandparent.js'
Copying '/app/build/static/src/common/directives/tiltIndicator/tiltIndicator.js'
Copying '/app/build/static/src/common/directives/slider/slider.js'
Copying '/app/build/static/src/app/filters.js'
Copying '/app/build/static/src/app/app.js'
Copying '/app/build/static/src/app/utils.js'
Copying '/app/build/static/src/app/api.js'
Copying '/app/build/static/src/app/no_log_debug.js'
Copying '/app/build/static/src/app/controllers/widgetData/simpleData.js'
Copying '/app/build/static/src/app/controllers/gridCtrl/gridCtrl.js'
Copying '/app/build/static/src/app/view_code/controller.js'
Copying '/app/build/static/src/app/view_code/api.js'
Copying '/app/build/static/src/app/widgets/widget.js'
Copying '/app/build/static/src/app/services/socketIo/socketIo.js'
Copying '/app/build/static/src/app/services/deviceStatus/deviceStatus.js'
Copying '/app/build/static/src/app/services/dataStreams/dataStreams.js'
Copying '/app/build/static/src/app/services/dashboardService/dashboardService.js'
Copying '/app/build/static/src/app/services/titleService/titleService.js'
Copying '/app/build/static/src/app/services/xbeeService/xbeeService.js'
Copying '/app/build/static/src/app/services/notificationService/notificationService.js'
Copying '/app/build/static/src/app/services/widgetRegistry/widgetRegistry.js'
Copying '/app/build/static/src/app/gridster/gridster.js'
Copying '/app/build/static/src/app/login/login.js'
Copying '/app/build/static/src/app/setup/setup.js'
Copying '/app/build/static/src/app/dashboard/controller.js'
Copying '/app/build/static/src/app/dashboard/footer_controller.js'
Copying '/app/build/static/src/app/widget_settings/directives.js'
Copying '/app/build/static/src/app/widget_settings/controller.js'
Copying '/app/build/static/src/app/advanced_options/controller.js'
Copying '/app/build/static/src/app/devices/devices.js'
Copying '/app/build/static/src/app/landing/landing.js'
Copying '/app/.heroku/python/lib/python2.7/site-packages/rest_framework/static/rest_framework/js/prettify-min.js'
Copying '/app/.heroku/python/lib/python2.7/site-packages/rest_framework/static/rest_framework/js/bootstrap.min.js'
Copying '/app/.heroku/python/lib/python2.7/site-packages/rest_framework/static/rest_framework/js/jquery-1.8.1-min.js'
Copying '/app/.heroku/python/lib/python2.7/site-packages/rest_framework/static/rest_framework/js/default.js'
Copying '/app/.heroku/python/lib/python2.7/site-packages/rest_framework/static/rest_framework/css/bootstrap.min.css'
Copying '/app/.heroku/python/lib/python2.7/site-packages/rest_framework/static/rest_framework/css/bootstrap-tweaks.css'
Copying '/app/.heroku/python/lib/python2.7/site-packages/rest_framework/static/rest_framework/css/default.css'
Copying '/app/.heroku/python/lib/python2.7/site-packages/rest_framework/static/rest_framework/css/prettify.css'
Copying '/app/.heroku/python/lib/python2.7/site-packages/rest_framework/static/rest_framework/img/glyphicons-halflings-white.png'
Copying '/app/.heroku/python/lib/python2.7/site-packages/rest_framework/static/rest_framework/img/grid.png'
Copying '/app/.heroku/python/lib/python2.7/site-packages/rest_framework/static/rest_framework/img/glyphicons-halflings.png'
179 static files copied.
But webpage is same
Now the heroku logs -n 100
command again.
That collectstatic
command should have made the app copy over all the static asset files into a new directory, where it can find them. (Note the "No such file or directory" errors from the previous logs command.)
These are the output
heroku logs -n 100
2018-01-02T23:56:27.615356+00:00 heroku[router]: at=info method=GET path="/static/vendor/select2/select2.css" host=enigmatic-gorge-49618.herokuapp.com request_id=50317a05-0d6e-4398-bab8-55b3fe8c6112 fwd="73.246.51.39" dyno=web.1 connect=2ms service=13ms status=404 bytes=8728 protocol=https
2018-01-02T23:56:25.304077+00:00 heroku[router]: at=info method=GET path="/static/vendor/toastr/toastr.min.css" host=enigmatic-gorge-49618.herokuapp.com request_id=d7f9629f-d05f-4d21-9649-cd6f1f1b0662 fwd="73.246.51.39" dyno=web.1 connect=1ms service=6ms status=404 bytes=7220 protocol=https
2018-01-02T23:56:26.463592+00:00 heroku[router]: at=info method=GET path="/static/assets/xbee-wifi-cloud-kit.js" host=enigmatic-gorge-49618.herokuapp.com request_id=d62e927f-c15f-4acb-80c4-41e1cb199657 fwd="73.246.51.39" dyno=web.1 connect=0ms service=4ms status=404 bytes=7922 protocol=https
2018-01-02T23:56:26.671365+00:00 heroku[router]: at=info method=GET path="/static/assets/Logo_XBee_sml.png" host=enigmatic-gorge-49618.herokuapp.com request_id=03322f3e-3023-4926-8470-d757159721af fwd="73.246.51.39" dyno=web.1 connect=0ms service=5ms status=404 bytes=8156 protocol=https
2018-01-02T23:56:26.807240+00:00 heroku[router]: at=info method=GET path="/" host=enigmatic-gorge-49618.herokuapp.com request_id=ae67bd20-90f4-47b8-b085-1815117707a7 fwd="73.246.51.39" dyno=web.1 connect=0ms service=9ms status=200 bytes=4091 protocol=https
2018-01-02T23:56:25.303308+00:00 heroku[router]: at=info method=GET path="/static/vendor/jquery-ui/themes/base/jquery.ui.slider.css" host=enigmatic-gorge-49618.herokuapp.com request_id=1928c17d-5418-49f1-8b2e-a87037744e3e fwd="73.246.51.39" dyno=web.1 connect=1ms service=5ms status=404 bytes=7194 protocol=https
2018-01-02T23:56:26.660317+00:00 heroku[router]: at=info method=GET path="/static/assets/xbee-wifi-cloud-kit.js" host=enigmatic-gorge-49618.herokuapp.com request_id=feb089c7-d25a-4e86-bf9b-efdf6efe303e fwd="73.246.51.39" dyno=web.1 connect=1ms service=4ms status=404 bytes=8130 protocol=https
2018-01-02T23:56:27.283745+00:00 heroku[router]: at=info method=GET path="/" host=enigmatic-gorge-49618.herokuapp.com request_id=bae0766e-82ad-4664-8e4a-439ce090af0c fwd="73.246.51.39" dyno=web.1 connect=1ms service=4ms status=200 bytes=4091 protocol=https
2018-01-02T23:56:26.180334+00:00 app[web.1]: [Errno 2] No such file or directory: 'staticfiles/assets/xbee-wifi-cloud-kit.css'
2018-01-02T23:56:26.181682+00:00 app[web.1]: [Errno 2] No such file or directory: 'staticfiles/vendor/jquery-ui/themes/base/jquery.ui.progressbar.css'
2018-01-02T23:56:26.182530+00:00 app[web.1]: [Errno 2] No such file or directory: 'staticfiles/vendor/jquery-ui/themes/base/jquery.ui.slider.css'
2018-01-02T23:56:26.184325+00:00 app[web.1]: [Errno 2] No such file or directory: 'staticfiles/vendor/jquery-ui/themes/start/jquery.ui.theme.css'
2018-01-02T23:56:26.183406+00:00 app[web.1]: [Errno 2] No such file or directory: 'staticfiles/vendor/select2/select2.css'
2018-01-02T23:56:26.224151+00:00 app[web.1]: [Errno 2] No such file or directory: 'staticfiles/assets/xbee-wifi-cloud-kit.js'
2018-01-02T23:56:26.235615+00:00 app[web.1]: [Errno 2] No such file or directory: 'staticfiles/assets/Logo_XBee_sml.png'
2018-01-02T23:56:26.185342+00:00 app[web.1]: [Errno 2] No such file or directory: 'staticfiles/vendor/toastr/toastr.min.css'
2018-01-02T23:56:26.416233+00:00 app[web.1]: [Errno 2] No such file or directory: 'staticfiles/vendor/jquery-ui/themes/start/jquery.ui.theme.css'
2018-01-02T23:56:26.415167+00:00 app[web.1]: [Errno 2] No such file or directory: 'staticfiles/assets/xbee-wifi-cloud-kit.css'
2018-01-02T23:56:26.417454+00:00 app[web.1]: [Errno 2] No such file or directory: 'staticfiles/vendor/jquery-ui/themes/base/jquery.ui.progressbar.css'
2018-01-02T23:56:26.418835+00:00 app[web.1]: [Errno 2] No such file or directory: 'staticfiles/vendor/jquery-ui/themes/base/jquery.ui.slider.css'
2018-01-02T23:56:26.419772+00:00 app[web.1]: [Errno 2] No such file or directory: 'staticfiles/vendor/select2/select2.css'
2018-01-02T23:56:26.420589+00:00 app[web.1]: [Errno 2] No such file or directory: 'staticfiles/vendor/toastr/toastr.min.css'
2018-01-02T23:56:29.428377+00:00 app[web.1]: 2018-01-02 23:56:29.428 28 LOG Stats: 0 req/s, in 0 b/s, out 0 b/s,query 0 us
2018-01-02T23:56:26.619249+00:00 heroku[router]: at=info method=GET path="/static/vendor/jquery-ui/themes/base/jquery.ui.progressbar.css" host=enigmatic-gorge-49618.herokuapp.com request_id=46bf0995-37b3-402e-a5b0-85073bb56ef5 fwd="73.246.51.39" dyno=web.1 connect=0ms service=7ms status=404 bytes=8000 protocol=https
2018-01-02T23:56:25.775363+00:00 app[web.1]: [Errno 2] No such file or directory: 'staticfiles/vendor/toastr/toastr.min.css'
2018-01-02T23:56:25.777448+00:00 app[web.1]: [Errno 2] No such file or directory: 'staticfiles/assets/xbee-wifi-cloud-kit.css'
2018-01-02T23:56:25.779227+00:00 app[web.1]: [Errno 2] No such file or directory: 'staticfiles/vendor/jquery-ui/themes/start/jquery.ui.theme.css'
2018-01-02T23:56:25.780661+00:00 app[web.1]: [Errno 2] No such file or directory: 'staticfiles/vendor/jquery-ui/themes/base/jquery.ui.progressbar.css'
2018-01-02T23:56:25.783258+00:00 app[web.1]: [Errno 2] No such file or directory: 'staticfiles/vendor/jquery-ui/themes/base/jquery.ui.slider.css'
2018-01-02T23:56:25.785181+00:00 app[web.1]: [Errno 2] No such file or directory: 'staticfiles/vendor/select2/select2.css'
2018-01-02T23:56:25.833687+00:00 app[web.1]: [Errno 2] No such file or directory: 'staticfiles/assets/xbee-wifi-cloud-kit.js'
2018-01-02T23:56:25.837146+00:00 app[web.1]: [Errno 2] No such file or directory: 'staticfiles/assets/Logo_XBee_sml.png'
2018-01-02T23:56:27.341808+00:00 heroku[router]: at=info method=GET path="/static/vendor/jquery-ui/themes/base/jquery.ui.slider.css" host=enigmatic-gorge-49618.herokuapp.com request_id=16292e43-fafb-43cd-9916-bae6ce8eb34f fwd="73.246.51.39" dyno=web.1 connect=1ms service=6ms status=404 bytes=8442 protocol=https
2018-01-02T23:56:27.338821+00:00 heroku[router]: at=info method=GET path="/static/vendor/jquery-ui/themes/base/jquery.ui.progressbar.css" host=enigmatic-gorge-49618.herokuapp.com request_id=41be568b-1d34-4812-bb1a-17888a3f4ce8 fwd="73.246.51.39" dyno=web.1 connect=0ms service=4ms status=404 bytes=8390 protocol=https
2018-01-02T23:56:27.648133+00:00 heroku[router]: at=info method=GET path="/static/assets/xbee-wifi-cloud-kit.js" host=enigmatic-gorge-49618.herokuapp.com request_id=f9c4d4a3-1230-4648-b4de-8f27472e0f24 fwd="73.246.51.39" dyno=web.1 connect=1ms service=7ms status=404 bytes=8754 protocol=https
2018-01-02T23:56:27.343765+00:00 heroku[router]: at=info method=GET path="/static/assets/xbee-wifi-cloud-kit.css" host=enigmatic-gorge-49618.herokuapp.com request_id=8153131d-a23c-40ec-a8ac-eb7b127abf13 fwd="73.246.51.39" dyno=web.1 connect=0ms service=8ms status=404 bytes=8468 protocol=https
2018-01-02T23:56:26.565921+00:00 heroku[router]: at=info method=GET path="/" host=enigmatic-gorge-49618.herokuapp.com request_id=b06c0e3b-bb85-41d7-aa10-087ec915e62d fwd="73.246.51.39" dyno=web.1 connect=1ms service=8ms status=200 bytes=4091 protocol=https
2018-01-02T23:56:26.861067+00:00 heroku[router]: at=info method=GET path="/static/assets/xbee-wifi-cloud-kit.css" host=enigmatic-gorge-49618.herokuapp.com request_id=78e56d73-a8d8-4a83-9642-b06693bb63c9 fwd="73.246.51.39" dyno=web.1 connect=1ms service=4ms status=404 bytes=8182 protocol=https
2018-01-02T23:56:27.612340+00:00 heroku[router]: at=info method=GET path="/static/vendor/toastr/toastr.min.css" host=enigmatic-gorge-49618.herokuapp.com request_id=dd4d367b-38d4-429b-ac4e-0be6cbcba52e fwd="73.246.51.39" dyno=web.1 connect=1ms service=13ms status=404 bytes=8702 protocol=https
2018-01-02T23:56:27.542340+00:00 heroku[router]: at=info method=GET path="/" host=enigmatic-gorge-49618.herokuapp.com request_id=a2aa970a-abec-4806-bef9-faec1c91840a fwd="73.246.51.39" dyno=web.1 connect=1ms service=7ms status=200 bytes=4091 protocol=https
2018-01-02T23:56:27.602966+00:00 heroku[router]: at=info method=GET path="/static/vendor/jquery-ui/themes/base/jquery.ui.progressbar.css" host=enigmatic-gorge-49618.herokuapp.com request_id=991da8f4-3053-4742-a9b6-8f17289f72c9 fwd="73.246.51.39" dyno=web.1 connect=1ms service=9ms status=404 bytes=8624 protocol=https
2018-01-02T23:56:27.345854+00:00 heroku[router]: at=info method=GET path="/static/vendor/select2/select2.css" host=enigmatic-gorge-49618.herokuapp.com request_id=bde51e4f-3faa-4579-b6f1-61ad706ca8de fwd="73.246.51.39" dyno=web.1 connect=0ms service=9ms status=404 bytes=8494 protocol=https
2018-01-02T23:56:26.184054+00:00 heroku[router]: at=info method=GET path="/static/assets/xbee-wifi-cloud-kit.css" host=enigmatic-gorge-49618.herokuapp.com request_id=65bba4e6-12d3-41c0-9eb6-07fb21f2557f fwd="73.246.51.39" dyno=web.1 connect=0ms service=4ms status=404 bytes=7558 protocol=https
2018-01-02T23:56:26.227349+00:00 heroku[router]: at=info method=GET path="/static/assets/xbee-wifi-cloud-kit.js" host=enigmatic-gorge-49618.herokuapp.com request_id=fa9f41fd-2c0e-4264-b6e7-f03acb4763ae fwd="73.246.51.39" dyno=web.1 connect=0ms service=3ms status=404 bytes=7714 protocol=https
2018-01-02T23:56:26.422421+00:00 heroku[router]: at=info method=GET path="/static/vendor/jquery-ui/themes/base/jquery.ui.slider.css" host=enigmatic-gorge-49618.herokuapp.com request_id=73a0ecb9-4a90-4c45-8117-8a394b7b1eca fwd="73.246.51.39" dyno=web.1 connect=1ms service=7ms status=404 bytes=7844 protocol=https
2018-01-02T23:56:26.616418+00:00 heroku[router]: at=info method=GET path="/static/vendor/select2/select2.css" host=enigmatic-gorge-49618.herokuapp.com request_id=e93fee8b-3608-437b-a94a-d34ca478851a fwd="73.246.51.39" dyno=web.1 connect=1ms service=5ms status=404 bytes=7974 protocol=https
2018-01-02T23:56:25.788988+00:00 heroku[router]: at=info method=GET path="/static/vendor/select2/select2.css" host=enigmatic-gorge-49618.herokuapp.com request_id=20356efc-177b-455b-b1e3-bf25bd0b3850 fwd="73.246.51.39" dyno=web.1 connect=1ms service=13ms status=404 bytes=7480 protocol=https
2018-01-02T23:56:26.186014+00:00 heroku[router]: at=info method=GET path="/static/vendor/jquery-ui/themes/base/jquery.ui.progressbar.css" host=enigmatic-gorge-49618.herokuapp.com request_id=f9b135ad-9f9b-4bb1-b665-9de4b7e34afb fwd="73.246.51.39" dyno=web.1 connect=0ms service=5ms status=404 bytes=7584 protocol=https
2018-01-02T23:56:27.665053+00:00 heroku[router]: at=info method=GET path="/static/assets/Logo_XBee_sml.png" host=enigmatic-gorge-49618.herokuapp.com request_id=b0dd83f5-de3c-446a-8b67-3591421561ad fwd="73.246.51.39" dyno=web.1 connect=1ms service=7ms status=404 bytes=8780 protocol=https
2018-01-02T23:56:49.629810+00:00 heroku[router]: at=info method=GET path="/static/assets/xbee-wifi-cloud-kit.css" host=enigmatic-gorge-49618.herokuapp.com request_id=eb3ba01a-2983-4454-abfa-0ad96b20150f fwd="73.246.51.39" dyno=web.1 connect=0ms service=20ms status=404 bytes=8936 protocol=https
2018-01-02T23:56:49.523922+00:00 app[web.1]: [Errno 2] No such file or directory: 'staticfiles/vendor/jquery-ui/themes/base/jquery.ui.progressbar.css'
2018-01-02T23:56:49.574970+00:00 app[web.1]: [Errno 2] No such file or directory: 'staticfiles/assets/xbee-wifi-cloud-kit.js'
2018-01-02T23:56:49.612895+00:00 app[web.1]: [Errno 2] No such file or directory: 'staticfiles/vendor/jquery-ui/themes/base/jquery.ui.slider.css'
2018-01-02T23:56:49.617740+00:00 app[web.1]: [Errno 2] No such file or directory: 'staticfiles/vendor/select2/select2.css'
2018-01-02T23:56:49.621252+00:00 app[web.1]: [Errno 2] No such file or directory: 'staticfiles/vendor/jquery-ui/themes/start/jquery.ui.theme.css'
2018-01-02T23:56:49.624513+00:00 app[web.1]: [Errno 2] No such file or directory: 'staticfiles/assets/xbee-wifi-cloud-kit.css'
2018-01-02T23:56:49.626897+00:00 app[web.1]: [Errno 2] No such file or directory: 'staticfiles/vendor/toastr/toastr.min.css'
2018-01-02T23:56:49.687244+00:00 app[web.1]: [Errno 2] No such file or directory: 'staticfiles/assets/Logo_XBee_sml.png'
2018-01-02T23:56:49.692867+00:00 heroku[router]: at=info method=GET path="/static/assets/Logo_XBee_sml.png" host=enigmatic-gorge-49618.herokuapp.com request_id=8f678352-1dac-4117-bd69-c1a92985933d fwd="73.246.51.39" dyno=web.1 connect=0ms service=6ms status=404 bytes=8988 protocol=https
2018-01-02T23:56:49.848316+00:00 heroku[router]: at=info method=GET path="/" host=enigmatic-gorge-49618.herokuapp.com request_id=2cd16817-abea-436d-ab3a-0bdb97d69b06 fwd="73.246.51.39" dyno=web.1 connect=1ms service=14ms status=200 bytes=4091 protocol=https
2018-01-02T23:56:49.625793+00:00 heroku[router]: at=info method=GET path="/static/vendor/jquery-ui/themes/start/jquery.ui.theme.css" host=enigmatic-gorge-49618.herokuapp.com request_id=cddaf291-cb96-42d9-b9f3-1feea605a416 fwd="73.246.51.39" dyno=web.1 connect=0ms service=17ms status=404 bytes=8910 protocol=https
2018-01-02T23:56:49.580015+00:00 heroku[router]: at=info method=GET path="/static/assets/xbee-wifi-cloud-kit.js" host=enigmatic-gorge-49618.herokuapp.com request_id=b58ab56d-62d8-4bf0-baa3-6643b9f9a9dc fwd="73.246.51.39" dyno=web.1 connect=1ms service=7ms status=404 bytes=8832 protocol=https
2018-01-02T23:56:49.961462+00:00 heroku[router]: at=info method=GET path="/static/assets/Logo_XBee_sml.png" host=enigmatic-gorge-49618.herokuapp.com request_id=ff5adecf-59a1-4c73-bc97-c6a40fa5d94d fwd="73.246.51.39" dyno=web.1 connect=0ms service=5ms status=404 bytes=9196 protocol=https
2018-01-02T23:56:49.955233+00:00 heroku[router]: at=info method=GET path="/static/assets/xbee-wifi-cloud-kit.js" host=enigmatic-gorge-49618.herokuapp.com request_id=284ca341-9620-4435-9ba5-32bc713c3181 fwd="73.246.51.39" dyno=web.1 connect=1ms service=6ms status=404 bytes=9170 protocol=https
2018-01-02T23:56:49.616855+00:00 heroku[router]: at=info method=GET path="/static/vendor/jquery-ui/themes/base/jquery.ui.slider.css" host=enigmatic-gorge-49618.herokuapp.com request_id=6fe3dfe6-f4a9-4838-8985-e7d4e5c88b09 fwd="73.246.51.39" dyno=web.1 connect=1ms service=9ms status=404 bytes=8858 protocol=https
2018-01-02T23:56:49.906650+00:00 heroku[router]: at=info method=GET path="/static/vendor/jquery-ui/themes/start/jquery.ui.theme.css" host=enigmatic-gorge-49618.herokuapp.com request_id=9e7b9bc4-b45e-42a0-9258-c19600a2af6d fwd="73.246.51.39" dyno=web.1 connect=0ms service=12ms status=404 bytes=9118 protocol=https
2018-01-02T23:56:49.899969+00:00 heroku[router]: at=info method=GET path="/static/vendor/toastr/toastr.min.css" host=enigmatic-gorge-49618.herokuapp.com request_id=04a18676-0c2f-41f8-925d-2d3f79be942f fwd="73.246.51.39" dyno=web.1 connect=1ms service=5ms status=404 bytes=9014 protocol=https
2018-01-02T23:56:49.621921+00:00 heroku[router]: at=info method=GET path="/static/vendor/select2/select2.css" host=enigmatic-gorge-49618.herokuapp.com request_id=08759454-ec81-47ec-80d5-9b615ef61019 fwd="73.246.51.39" dyno=web.1 connect=0ms service=14ms status=404 bytes=8884 protocol=https
2018-01-02T23:56:49.901672+00:00 heroku[router]: at=info method=GET path="/static/vendor/select2/select2.css" host=enigmatic-gorge-49618.herokuapp.com request_id=f1d69ca7-e2e1-48e2-9440-43b66f46d90a fwd="73.246.51.39" dyno=web.1 connect=1ms service=7ms status=404 bytes=9040 protocol=https
2018-01-02T23:56:49.527801+00:00 heroku[router]: at=info method=GET path="/static/vendor/jquery-ui/themes/base/jquery.ui.progressbar.css" host=enigmatic-gorge-49618.herokuapp.com request_id=23b2d612-1b24-4dee-b4c7-21914eadf0e6 fwd="73.246.51.39" dyno=web.1 connect=0ms service=5ms status=404 bytes=8806 protocol=https
2018-01-02T23:56:49.906273+00:00 heroku[router]: at=info method=GET path="/static/assets/xbee-wifi-cloud-kit.css" host=enigmatic-gorge-49618.herokuapp.com request_id=a58ca829-4b34-4b45-9443-aee5121a627a fwd="73.246.51.39" dyno=web.1 connect=1ms service=11ms status=404 bytes=9092 protocol=https
2018-01-02T23:56:52.012094+00:00 heroku[router]: at=info method=GET path="/static/vendor/jquery-ui/themes/start/jquery.ui.theme.css" host=enigmatic-gorge-49618.herokuapp.com request_id=9f971f6f-c5a2-4d4e-8478-3d9c502d4ae2 fwd="73.246.51.39" dyno=web.1 connect=1ms service=5ms status=404 bytes=9300 protocol=https
2018-01-02T23:56:52.013931+00:00 heroku[router]: at=info method=GET path="/static/vendor/select2/select2.css" host=enigmatic-gorge-49618.herokuapp.com request_id=4920c33c-c9fd-4c78-8f10-e2f8117dff43 fwd="73.246.51.39" dyno=web.1 connect=1ms service=7ms status=404 bytes=9352 protocol=https
2018-01-02T23:56:51.940325+00:00 heroku[router]: at=info method=GET path="/" host=enigmatic-gorge-49618.herokuapp.com request_id=e4eb3fad-d223-42ad-86ca-db0902cb4ca7 fwd="73.246.51.39" dyno=web.1 connect=1ms service=7ms status=200 bytes=4091 protocol=https
2018-01-02T23:56:49.909243+00:00 heroku[router]: at=info method=GET path="/static/vendor/jquery-ui/themes/base/jquery.ui.progressbar.css" host=enigmatic-gorge-49618.herokuapp.com request_id=8dbb2a88-7bb2-40d9-bae2-16168e182383 fwd="73.246.51.39" dyno=web.1 connect=1ms service=7ms status=404 bytes=9144 protocol=https
2018-01-02T23:56:49.895810+00:00 app[web.1]: [Errno 2] No such file or directory: 'staticfiles/vendor/toastr/toastr.min.css'
2018-01-02T23:56:49.897687+00:00 app[web.1]: [Errno 2] No such file or directory: 'staticfiles/vendor/select2/select2.css'
2018-01-02T23:56:49.899199+00:00 app[web.1]: [Errno 2] No such file or directory: 'staticfiles/vendor/jquery-ui/themes/base/jquery.ui.slider.css'
2018-01-02T23:56:49.901200+00:00 app[web.1]: [Errno 2] No such file or directory: 'staticfiles/assets/xbee-wifi-cloud-kit.css'
2018-01-02T23:56:49.902475+00:00 app[web.1]: [Errno 2] No such file or directory: 'staticfiles/vendor/jquery-ui/themes/start/jquery.ui.theme.css'
2018-01-02T23:56:49.903821+00:00 app[web.1]: [Errno 2] No such file or directory: 'staticfiles/vendor/jquery-ui/themes/base/jquery.ui.progressbar.css'
2018-01-02T23:56:49.950396+00:00 app[web.1]: [Errno 2] No such file or directory: 'staticfiles/assets/xbee-wifi-cloud-kit.js'
2018-01-02T23:56:49.956919+00:00 app[web.1]: [Errno 2] No such file or directory: 'staticfiles/assets/Logo_XBee_sml.png'
2018-01-02T23:56:52.014571+00:00 heroku[router]: at=info method=GET path="/static/assets/xbee-wifi-cloud-kit.css" host=enigmatic-gorge-49618.herokuapp.com request_id=9e4c0e21-f6b9-4210-9c4b-7690a54cc017 fwd="73.246.51.39" dyno=web.1 connect=1ms service=7ms status=404 bytes=9326 protocol=https
2018-01-02T23:56:52.082605+00:00 heroku[router]: at=info method=GET path="/static/assets/Logo_XBee_sml.png" host=enigmatic-gorge-49618.herokuapp.com request_id=c5c46a0d-76ec-4bad-890a-690afb5556cb fwd="73.246.51.39" dyno=web.1 connect=0ms service=5ms status=404 bytes=9404 protocol=https
2018-01-02T23:56:52.001648+00:00 app[web.1]: [Errno 2] No such file or directory: 'staticfiles/vendor/jquery-ui/themes/base/jquery.ui.progressbar.css'
2018-01-02T23:56:52.006014+00:00 app[web.1]: [Errno 2] No such file or directory: 'staticfiles/vendor/jquery-ui/themes/base/jquery.ui.slider.css'
2018-01-02T23:56:52.007142+00:00 app[web.1]: [Errno 2] No such file or directory: 'staticfiles/vendor/toastr/toastr.min.css'
2018-01-02T23:56:52.008176+00:00 app[web.1]: [Errno 2] No such file or directory: 'staticfiles/vendor/jquery-ui/themes/start/jquery.ui.theme.css'
2018-01-02T23:56:52.009062+00:00 app[web.1]: [Errno 2] No such file or directory: 'staticfiles/assets/xbee-wifi-cloud-kit.css'
2018-01-02T23:56:52.010008+00:00 app[web.1]: [Errno 2] No such file or directory: 'staticfiles/vendor/select2/select2.css'
2018-01-02T23:56:52.049723+00:00 app[web.1]: [Errno 2] No such file or directory: 'staticfiles/assets/xbee-wifi-cloud-kit.js'
2018-01-02T23:56:52.077993+00:00 app[web.1]: [Errno 2] No such file or directory: 'staticfiles/assets/Logo_XBee_sml.png'
2018-01-02T23:56:52.006600+00:00 heroku[router]: at=info method=GET path="/static/vendor/jquery-ui/themes/base/jquery.ui.progressbar.css" host=enigmatic-gorge-49618.herokuapp.com request_id=eaeca230-5a74-45d2-aaac-007342745607 fwd="73.246.51.39" dyno=web.1 connect=1ms service=5ms status=404 bytes=9222 protocol=https
2018-01-02T23:56:52.056253+00:00 heroku[router]: at=info method=GET path="/static/assets/xbee-wifi-cloud-kit.js" host=enigmatic-gorge-49618.herokuapp.com request_id=c33f0d74-c0a1-4069-968a-6fdbcfcae5f7 fwd="73.246.51.39" dyno=web.1 connect=0ms service=7ms status=404 bytes=9378 protocol=https
2018-01-02T23:56:52.009659+00:00 heroku[router]: at=info method=GET path="/static/vendor/jquery-ui/themes/base/jquery.ui.slider.css" host=enigmatic-gorge-49618.herokuapp.com request_id=7c74e454-2fbb-46b2-aa3d-a5a770fbcfda fwd="73.246.51.39" dyno=web.1 connect=0ms service=4ms status=404 bytes=9248 protocol=https
2018-01-02T23:56:49.427198+00:00 heroku[router]: at=info method=GET path="/" host=enigmatic-gorge-49618.herokuapp.com request_id=6765fe47-8683-4536-b6c2-9e3aa3a31f3a fwd="73.246.51.39" dyno=web.1 connect=1ms service=12ms status=200 bytes=4091 protocol=https
2018-01-02T23:56:49.633351+00:00 heroku[router]: at=info method=GET path="/static/vendor/toastr/toastr.min.css" host=enigmatic-gorge-49618.herokuapp.com request_id=b920be92-f795-40fd-9e20-6b4c564fd983 fwd="73.246.51.39" dyno=web.1 connect=0ms service=22ms status=404 bytes=8962 protocol=https
2018-01-02T23:56:49.905353+00:00 heroku[router]: at=info method=GET path="/static/vendor/jquery-ui/themes/base/jquery.ui.slider.css" host=enigmatic-gorge-49618.herokuapp.com request_id=1c3857c7-182e-432f-8e7e-de9f5c2c0477 fwd="73.246.51.39" dyno=web.1 connect=1ms service=9ms status=404 bytes=9066 protocol=https
2018-01-02T23:56:52.012884+00:00 heroku[router]: at=info method=GET path="/static/vendor/toastr/toastr.min.css" host=enigmatic-gorge-49618.herokuapp.com request_id=866284b2-7902-4015-9fcd-3669c0db5d8a fwd="73.246.51.39" dyno=web.1 connect=1ms service=5ms status=404 bytes=9274 protocol=https
2018-01-02T23:57:29.428873+00:00 app[web.1]: 2018-01-02 23:57:29.428 28 LOG Stats: 0 req/s, in 0 b/s, out 0 b/s,query 0 us
The application should be able to find those missing files under /app/prod/static
. Hmm.
How about:
heroku run ls -R /app/prod
These are the latest output
heroku logs -n 100
2018-01-02T23:59:10.398074+00:00 heroku[router]: at=info method=GET path="/static/vendor/jquery-ui/themes/base/jquery.ui.progressbar.css" host=enigmatic-gorge-49618.herokuapp.com request_id=b6aa83be-a547-46e5-84a3-7ee4f00e2b95 fwd="73.246.51.39" dyno=web.1 connect=1ms service=20ms status=404 bytes=9976 protocol=https
2018-01-02T23:59:10.783935+00:00 heroku[router]: at=info method=GET path="/" host=enigmatic-gorge-49618.herokuapp.com request_id=74456e85-fe14-414d-821e-59457dda0909 fwd="73.246.51.39" dyno=web.1 connect=1ms service=6ms status=200 bytes=4091 protocol=https
2018-01-02T23:59:10.621266+00:00 heroku[router]: at=info method=GET path="/static/assets/xbee-wifi-cloud-kit.css" host=enigmatic-gorge-49618.herokuapp.com request_id=4373a5dc-2742-48da-8d86-99c812103a8c fwd="73.246.51.39" dyno=web.1 connect=1ms service=28ms status=404 bytes=10132 protocol=https
2018-01-02T23:59:10.020998+00:00 heroku[router]: at=info method=GET path="/static/assets/xbee-wifi-cloud-kit.css" host=enigmatic-gorge-49618.herokuapp.com request_id=879807c5-cebc-41b5-b0e6-5df7bb7b5681 fwd="73.246.51.39" dyno=web.1 connect=1ms service=9ms status=404 bytes=9664 protocol=https
2018-01-02T23:59:10.660456+00:00 heroku[router]: at=info method=GET path="/static/assets/xbee-wifi-cloud-kit.js" host=enigmatic-gorge-49618.herokuapp.com request_id=4bf5f5e1-0b63-4a51-bcbd-0cbd8d508c82 fwd="73.246.51.39" dyno=web.1 connect=1ms service=11ms status=404 bytes=10210 protocol=https
2018-01-02T23:59:29.431089+00:00 app[web.1]: 2018-01-02 23:59:29.431 28 LOG Stats: 0 req/s, in 0 b/s, out 0 b/s,query 0 us
2018-01-03T00:00:29.433745+00:00 app[web.1]: 2018-01-03 00:00:29.433 28 LOG Stats: 0 req/s, in 0 b/s, out 0 b/s,query 0 us
2018-01-03T00:01:29.437732+00:00 app[web.1]: 2018-01-03 00:01:29.437 28 LOG Stats: 0 req/s, in 0 b/s, out 0 b/s,query 0 us
2018-01-03T00:02:29.439492+00:00 app[web.1]: 2018-01-03 00:02:29.439 28 LOG Stats: 0 req/s, in 0 b/s, out 0 b/s,query 0 us
2018-01-03T00:03:29.441296+00:00 app[web.1]: 2018-01-03 00:03:29.441 28 LOG Stats: 0 req/s, in 0 b/s, out 0 b/s,query 0 us
2018-01-03T00:04:29.445745+00:00 app[web.1]: 2018-01-03 00:04:29.445 28 LOG Stats: 0 req/s, in 0 b/s, out 0 b/s,query 0 us
2018-01-03T00:04:39.150300+00:00 app[api]: Starting process with command `ls -R /app/prod` by user arunnediyasala@gmail.com
2018-01-03T00:04:50.238535+00:00 heroku[run.4469]: State changed from starting to up
2018-01-03T00:04:50.347765+00:00 heroku[run.4469]: Awaiting client
2018-01-03T00:04:50.423891+00:00 heroku[run.4469]: Starting process with command `ls -R /app/prod`
2018-01-03T00:04:55.572556+00:00 heroku[run.4469]: State changed from up to complete
2018-01-03T00:04:55.556254+00:00 heroku[run.4469]: Process exited with status 0
2018-01-03T00:05:09.238306+00:00 app[web.1]: [Errno 2] No such file or directory: 'staticfiles/vendor/select2/select2.css'
2018-01-03T00:05:09.230296+00:00 app[web.1]: [Errno 2] No such file or directory: 'staticfiles/vendor/jquery-ui/themes/base/jquery.ui.progressbar.css'
2018-01-03T00:05:09.240607+00:00 app[web.1]: [Errno 2] No such file or directory: 'staticfiles/vendor/jquery-ui/themes/base/jquery.ui.slider.css'
2018-01-03T00:05:09.260033+00:00 app[web.1]: [Errno 2] No such file or directory: 'staticfiles/vendor/toastr/toastr.min.css'
2018-01-03T00:05:09.250699+00:00 app[web.1]: [Errno 2] No such file or directory: 'staticfiles/vendor/jquery-ui/themes/start/jquery.ui.theme.css'
2018-01-03T00:05:09.261675+00:00 app[web.1]: [Errno 2] No such file or directory: 'staticfiles/assets/xbee-wifi-cloud-kit.css'
2018-01-03T00:05:09.274665+00:00 app[web.1]: [Errno 2] No such file or directory: 'staticfiles/assets/xbee-wifi-cloud-kit.js'
2018-01-03T00:05:09.306563+00:00 app[web.1]: [Errno 2] No such file or directory: 'staticfiles/assets/Logo_XBee_sml.png'
2018-01-03T00:05:09.689807+00:00 heroku[router]: at=info method=GET path="/static/vendor/jquery-ui/themes/base/jquery.ui.progressbar.css" host=enigmatic-gorge-49618.herokuapp.com request_id=fa7bb3ad-4cd0-41da-ac2c-092e467a2ec4 fwd="73.246.51.39" dyno=web.1 connect=0ms service=5ms status=404 bytes=10704 protocol=https
2018-01-03T00:05:09.697495+00:00 heroku[router]: at=info method=GET path="/static/vendor/jquery-ui/themes/start/jquery.ui.theme.css" host=enigmatic-gorge-49618.herokuapp.com request_id=557f69e8-8961-4fbb-98a2-be2f199e1805 fwd="73.246.51.39" dyno=web.1 connect=0ms service=5ms status=404 bytes=10730 protocol=https
2018-01-03T00:05:09.685291+00:00 app[web.1]: [Errno 2] No such file or directory: 'staticfiles/vendor/jquery-ui/themes/base/jquery.ui.slider.css'
2018-01-03T00:05:09.687087+00:00 app[web.1]: [Errno 2] No such file or directory: 'staticfiles/vendor/jquery-ui/themes/base/jquery.ui.progressbar.css'
2018-01-03T00:05:09.693496+00:00 app[web.1]: [Errno 2] No such file or directory: 'staticfiles/vendor/jquery-ui/themes/start/jquery.ui.theme.css'
2018-01-03T00:05:09.696449+00:00 app[web.1]: [Errno 2] No such file or directory: 'staticfiles/vendor/toastr/toastr.min.css'
2018-01-03T00:05:09.697903+00:00 app[web.1]: [Errno 2] No such file or directory: 'staticfiles/vendor/select2/select2.css'
2018-01-03T00:05:09.699808+00:00 app[web.1]: [Errno 2] No such file or directory: 'staticfiles/assets/xbee-wifi-cloud-kit.css'
2018-01-03T00:05:09.731291+00:00 app[web.1]: [Errno 2] No such file or directory: 'staticfiles/assets/xbee-wifi-cloud-kit.js'
2018-01-03T00:05:09.749661+00:00 app[web.1]: [Errno 2] No such file or directory: 'staticfiles/assets/Logo_XBee_sml.png'
2018-01-03T00:05:10.054908+00:00 heroku[router]: at=info method=GET path="/static/assets/xbee-wifi-cloud-kit.js" host=enigmatic-gorge-49618.herokuapp.com request_id=e7e8dfb0-fee8-4790-a217-772c83ef23d9 fwd="73.246.51.39" dyno=web.1 connect=0ms service=6ms status=404 bytes=11042 protocol=https
2018-01-03T00:05:10.016640+00:00 heroku[router]: at=info method=GET path="/static/vendor/jquery-ui/themes/start/jquery.ui.theme.css" host=enigmatic-gorge-49618.herokuapp.com request_id=9265c4ee-339a-4a56-97f2-1da33ecfc1fd fwd="73.246.51.39" dyno=web.1 connect=0ms service=9ms status=404 bytes=10964 protocol=https
2018-01-03T00:05:10.008712+00:00 app[web.1]: [Errno 2] No such file or directory: 'staticfiles/vendor/jquery-ui/themes/base/jquery.ui.slider.css'
2018-01-03T00:05:10.012242+00:00 app[web.1]: [Errno 2] No such file or directory: 'staticfiles/vendor/jquery-ui/themes/start/jquery.ui.theme.css'
2018-01-03T00:05:10.003830+00:00 app[web.1]: [Errno 2] No such file or directory: 'staticfiles/vendor/jquery-ui/themes/base/jquery.ui.progressbar.css'
2018-01-03T00:05:10.010599+00:00 app[web.1]: [Errno 2] No such file or directory: 'staticfiles/vendor/toastr/toastr.min.css'
2018-01-03T00:05:10.014031+00:00 app[web.1]: [Errno 2] No such file or directory: 'staticfiles/vendor/select2/select2.css'
2018-01-03T00:05:10.015829+00:00 app[web.1]: [Errno 2] No such file or directory: 'staticfiles/assets/xbee-wifi-cloud-kit.css'
2018-01-03T00:05:10.049870+00:00 app[web.1]: [Errno 2] No such file or directory: 'staticfiles/assets/xbee-wifi-cloud-kit.js'
2018-01-03T00:05:10.067292+00:00 app[web.1]: [Errno 2] No such file or directory: 'staticfiles/assets/Logo_XBee_sml.png'
2018-01-03T00:05:10.018266+00:00 heroku[router]: at=info method=GET path="/static/vendor/select2/select2.css" host=enigmatic-gorge-49618.herokuapp.com request_id=7a5e2fa8-a728-4594-8ed4-fc7b8b34126c fwd="73.246.51.39" dyno=web.1 connect=0ms service=11ms status=404 bytes=10990 protocol=https
2018-01-03T00:05:10.276674+00:00 heroku[router]: at=info method=GET path="/" host=enigmatic-gorge-49618.herokuapp.com request_id=ca2db813-ea70-4004-b8fb-b321f2d75648 fwd="73.246.51.39" dyno=web.1 connect=0ms service=11ms status=200 bytes=4091 protocol=https
2018-01-03T00:05:10.343415+00:00 heroku[router]: at=info method=GET path="/static/vendor/jquery-ui/themes/base/jquery.ui.progressbar.css" host=enigmatic-gorge-49618.herokuapp.com request_id=4fec2a43-ecc9-44f2-9ecb-2a5ca2b6982c fwd="73.246.51.39" dyno=web.1 connect=0ms service=20ms status=404 bytes=11172 protocol=https
2018-01-03T00:05:10.383880+00:00 heroku[router]: at=info method=GET path="/static/assets/xbee-wifi-cloud-kit.js" host=enigmatic-gorge-49618.herokuapp.com request_id=cdb06111-c93f-472e-bd61-ef2e28680449 fwd="73.246.51.39" dyno=web.1 connect=0ms service=7ms status=404 bytes=11250 protocol=https
2018-01-03T00:05:10.330464+00:00 app[web.1]: [Errno 2] No such file or directory: 'staticfiles/vendor/jquery-ui/themes/start/jquery.ui.theme.css'
2018-01-03T00:05:10.340358+00:00 app[web.1]: [Errno 2] No such file or directory: 'staticfiles/vendor/jquery-ui/themes/base/jquery.ui.progressbar.css'
2018-01-03T00:05:10.337691+00:00 app[web.1]: [Errno 2] No such file or directory: 'staticfiles/vendor/jquery-ui/themes/base/jquery.ui.slider.css'
2018-01-03T00:05:10.339082+00:00 app[web.1]: [Errno 2] No such file or directory: 'staticfiles/vendor/select2/select2.css'
2018-01-03T00:05:10.341674+00:00 app[web.1]: [Errno 2] No such file or directory: 'staticfiles/assets/xbee-wifi-cloud-kit.css'
2018-01-03T00:05:10.343001+00:00 app[web.1]: [Errno 2] No such file or directory: 'staticfiles/vendor/toastr/toastr.min.css'
2018-01-03T00:05:10.379047+00:00 app[web.1]: [Errno 2] No such file or directory: 'staticfiles/assets/xbee-wifi-cloud-kit.js'
2018-01-03T00:05:10.389951+00:00 app[web.1]: [Errno 2] No such file or directory: 'staticfiles/assets/Logo_XBee_sml.png'
2018-01-03T00:05:10.335227+00:00 heroku[router]: at=info method=GET path="/static/vendor/jquery-ui/themes/start/jquery.ui.theme.css" host=enigmatic-gorge-49618.herokuapp.com request_id=b6b36919-78bd-40a4-901c-d64d6a6534fc fwd="73.246.51.39" dyno=web.1 connect=0ms service=12ms status=404 bytes=11094 protocol=https
2018-01-03T00:05:09.735341+00:00 heroku[router]: at=info method=GET path="/static/assets/xbee-wifi-cloud-kit.js" host=enigmatic-gorge-49618.herokuapp.com request_id=40dcda84-5775-4efe-8fff-c0c1988f6547 fwd="73.246.51.39" dyno=web.1 connect=0ms service=7ms status=404 bytes=10834 protocol=https
2018-01-03T00:05:09.233585+00:00 heroku[router]: at=info method=GET path="/static/vendor/jquery-ui/themes/base/jquery.ui.progressbar.css" host=enigmatic-gorge-49618.herokuapp.com request_id=1066f331-c8b6-4f4d-ae52-d967cb6e3101 fwd="73.246.51.39" dyno=web.1 connect=0ms service=8ms status=404 bytes=10470 protocol=https
2018-01-03T00:05:09.254948+00:00 heroku[router]: at=info method=GET path="/static/vendor/jquery-ui/themes/start/jquery.ui.theme.css" host=enigmatic-gorge-49618.herokuapp.com request_id=19459fd8-4925-4075-963c-7a1085532d07 fwd="73.246.51.39" dyno=web.1 connect=0ms service=21ms status=404 bytes=10548 protocol=https
2018-01-03T00:05:10.343906+00:00 heroku[router]: at=info method=GET path="/static/vendor/select2/select2.css" host=enigmatic-gorge-49618.herokuapp.com request_id=89d005ca-a2fd-48d2-8d1c-a87c182f9bc4 fwd="73.246.51.39" dyno=web.1 connect=0ms service=20ms status=404 bytes=11146 protocol=https
2018-01-03T00:05:09.753759+00:00 heroku[router]: at=info method=GET path="/static/assets/Logo_XBee_sml.png" host=enigmatic-gorge-49618.herokuapp.com request_id=b211f48d-1242-4759-85fd-a453b2d38436 fwd="73.246.51.39" dyno=web.1 connect=0ms service=5ms status=404 bytes=10860 protocol=https
2018-01-03T00:05:09.950663+00:00 heroku[router]: at=info method=GET path="/" host=enigmatic-gorge-49618.herokuapp.com request_id=f26b8740-c23a-46ee-9df3-4cab6e2a44fb fwd="73.246.51.39" dyno=web.1 connect=0ms service=7ms status=200 bytes=4091 protocol=https
2018-01-03T00:05:10.342957+00:00 heroku[router]: at=info method=GET path="/static/vendor/jquery-ui/themes/base/jquery.ui.slider.css" host=enigmatic-gorge-49618.herokuapp.com request_id=9fc49ab7-1be2-4f8c-a2ee-df7f6de21b8d fwd="73.246.51.39" dyno=web.1 connect=0ms service=19ms status=404 bytes=11120 protocol=https
2018-01-03T00:05:09.700312+00:00 heroku[router]: at=info method=GET path="/static/vendor/toastr/toastr.min.css" host=enigmatic-gorge-49618.herokuapp.com request_id=a55d372d-ec09-4a44-bc1a-7d8a8e759931 fwd="73.246.51.39" dyno=web.1 connect=0ms service=8ms status=404 bytes=10756 protocol=https
2018-01-03T00:05:10.015273+00:00 heroku[router]: at=info method=GET path="/static/vendor/toastr/toastr.min.css" host=enigmatic-gorge-49618.herokuapp.com request_id=0e706625-fafe-4903-838f-b769d07e2206 fwd="73.246.51.39" dyno=web.1 connect=0ms service=8ms status=404 bytes=10938 protocol=https
2018-01-03T00:05:10.394668+00:00 heroku[router]: at=info method=GET path="/static/assets/Logo_XBee_sml.png" host=enigmatic-gorge-49618.herokuapp.com request_id=631dea1d-6f3d-42dd-ae90-fcbda138b7a3 fwd="73.246.51.39" dyno=web.1 connect=0ms service=7ms status=404 bytes=11276 protocol=https
2018-01-03T00:05:10.347170+00:00 heroku[router]: at=info method=GET path="/static/vendor/toastr/toastr.min.css" host=enigmatic-gorge-49618.herokuapp.com request_id=90d65ea5-fcf8-4431-821c-00989ce0dc14 fwd="73.246.51.39" dyno=web.1 connect=0ms service=19ms status=404 bytes=11224 protocol=https
2018-01-03T00:05:10.008958+00:00 heroku[router]: at=info method=GET path="/static/vendor/jquery-ui/themes/base/jquery.ui.progressbar.css" host=enigmatic-gorge-49618.herokuapp.com request_id=40d075b0-f21d-44c7-b099-574131d1e4df fwd="73.246.51.39" dyno=web.1 connect=0ms service=7ms status=404 bytes=10886 protocol=https
2018-01-03T00:05:09.702715+00:00 heroku[router]: at=info method=GET path="/static/vendor/select2/select2.css" host=enigmatic-gorge-49618.herokuapp.com request_id=a1d43355-59b4-43a5-af63-c303c7550d0a fwd="73.246.51.39" dyno=web.1 connect=0ms service=10ms status=404 bytes=10782 protocol=https
2018-01-03T00:05:09.688791+00:00 heroku[router]: at=info method=GET path="/static/vendor/jquery-ui/themes/base/jquery.ui.slider.css" host=enigmatic-gorge-49618.herokuapp.com request_id=d65a0827-38f9-4d72-b4e5-67582f6ddde8 fwd="73.246.51.39" dyno=web.1 connect=0ms service=5ms status=404 bytes=10678 protocol=https
2018-01-03T00:05:09.277346+00:00 heroku[router]: at=info method=GET path="/static/assets/xbee-wifi-cloud-kit.js" host=enigmatic-gorge-49618.herokuapp.com request_id=650b99a3-73fc-4105-87ca-b86421073087 fwd="73.246.51.39" dyno=web.1 connect=0ms service=5ms status=404 bytes=10626 protocol=https
2018-01-03T00:05:10.345589+00:00 heroku[router]: at=info method=GET path="/static/assets/xbee-wifi-cloud-kit.css" host=enigmatic-gorge-49618.herokuapp.com request_id=6bb52c54-9020-4438-91b4-b5edc3a72b0a fwd="73.246.51.39" dyno=web.1 connect=0ms service=19ms status=404 bytes=11198 protocol=https
2018-01-03T00:05:09.264386+00:00 heroku[router]: at=info method=GET path="/static/assets/xbee-wifi-cloud-kit.css" host=enigmatic-gorge-49618.herokuapp.com request_id=5dd2e6e7-8540-4713-ae03-014eea8e2445 fwd="73.246.51.39" dyno=web.1 connect=1ms service=31ms status=404 bytes=10600 protocol=https
2018-01-03T00:05:09.311720+00:00 heroku[router]: at=info method=GET path="/static/assets/Logo_XBee_sml.png" host=enigmatic-gorge-49618.herokuapp.com request_id=6a6602df-b810-42c0-b016-096ffecee6d7 fwd="73.246.51.39" dyno=web.1 connect=0ms service=8ms status=404 bytes=10652 protocol=https
2018-01-03T00:05:10.072286+00:00 heroku[router]: at=info method=GET path="/static/assets/Logo_XBee_sml.png" host=enigmatic-gorge-49618.herokuapp.com request_id=b964f254-b4ac-4786-9d30-d970f0b5e237 fwd="73.246.51.39" dyno=web.1 connect=1ms service=9ms status=404 bytes=11068 protocol=https
2018-01-03T00:05:09.177579+00:00 heroku[router]: at=info method=GET path="/" host=enigmatic-gorge-49618.herokuapp.com request_id=49bdcfa1-6833-4ff7-a155-13792730c1d2 fwd="73.246.51.39" dyno=web.1 connect=0ms service=7ms status=200 bytes=4091 protocol=https
2018-01-03T00:05:10.011993+00:00 heroku[router]: at=info method=GET path="/static/vendor/jquery-ui/themes/base/jquery.ui.slider.css" host=enigmatic-gorge-49618.herokuapp.com request_id=52108d35-ed70-4f06-a4df-5e3bde395a60 fwd="73.246.51.39" dyno=web.1 connect=0ms service=6ms status=404 bytes=10912 protocol=https
2018-01-03T00:05:09.264049+00:00 heroku[router]: at=info method=GET path="/static/vendor/toastr/toastr.min.css" host=enigmatic-gorge-49618.herokuapp.com request_id=54c2aea8-5475-467e-b6a5-e7213fec9b74 fwd="73.246.51.39" dyno=web.1 connect=0ms service=30ms status=404 bytes=10574 protocol=https
2018-01-03T00:05:09.242585+00:00 heroku[router]: at=info method=GET path="/static/vendor/select2/select2.css" host=enigmatic-gorge-49618.herokuapp.com request_id=744ab83e-4bd7-40de-9986-de797742ea9e fwd="73.246.51.39" dyno=web.1 connect=0ms service=9ms status=404 bytes=10496 protocol=https
2018-01-03T00:05:09.704590+00:00 heroku[router]: at=info method=GET path="/static/assets/xbee-wifi-cloud-kit.css" host=enigmatic-gorge-49618.herokuapp.com request_id=f35b9975-6da6-4ce6-a05b-36d446743b4e fwd="73.246.51.39" dyno=web.1 connect=0ms service=12ms status=404 bytes=10808 protocol=https
2018-01-03T00:05:09.245064+00:00 heroku[router]: at=info method=GET path="/static/vendor/jquery-ui/themes/base/jquery.ui.slider.css" host=enigmatic-gorge-49618.herokuapp.com request_id=e80ea1d6-9e12-431a-a58d-188c6783baff fwd="73.246.51.39" dyno=web.1 connect=0ms service=11ms status=404 bytes=10522 protocol=https
2018-01-03T00:05:21.368961+00:00 heroku[router]: at=info method=GET path="/" host=enigmatic-gorge-49618.herokuapp.com request_id=f0ebd153-a112-4d5f-9481-0beb200f8670 fwd="73.246.51.39" dyno=web.1 connect=0ms service=7ms status=200 bytes=4091 protocol=https
2018-01-03T00:05:21.478105+00:00 heroku[router]: at=info method=GET path="/static/assets/xbee-wifi-cloud-kit.js" host=enigmatic-gorge-49618.herokuapp.com request_id=5a5fbd83-779b-469f-80bf-561d704298ca fwd="73.246.51.39" dyno=web.1 connect=0ms service=8ms status=404 bytes=11458 protocol=https
2018-01-03T00:05:21.439161+00:00 heroku[router]: at=info method=GET path="/static/vendor/toastr/toastr.min.css" host=enigmatic-gorge-49618.herokuapp.com request_id=70df0a23-21d8-4cdd-9cb2-f1e9372fd595 fwd="73.246.51.39" dyno=web.1 connect=0ms service=13ms status=404 bytes=11380 protocol=https
2018-01-03T00:05:21.421267+00:00 app[web.1]: [Errno 2] No such file or directory: 'staticfiles/vendor/jquery-ui/themes/base/jquery.ui.progressbar.css'
2018-01-03T00:05:21.429703+00:00 app[web.1]: [Errno 2] No such file or directory: 'staticfiles/vendor/jquery-ui/themes/start/jquery.ui.theme.css'
2018-01-03T00:05:21.431376+00:00 app[web.1]: [Errno 2] No such file or directory: 'staticfiles/vendor/jquery-ui/themes/base/jquery.ui.slider.css'
2018-01-03T00:05:21.433525+00:00 app[web.1]: [Errno 2] No such file or directory: 'staticfiles/vendor/toastr/toastr.min.css'
2018-01-03T00:05:21.436878+00:00 app[web.1]: [Errno 2] No such file or directory: 'staticfiles/vendor/select2/select2.css'
2018-01-03T00:05:21.438230+00:00 app[web.1]: [Errno 2] No such file or directory: 'staticfiles/assets/xbee-wifi-cloud-kit.css'
2018-01-03T00:05:21.472165+00:00 app[web.1]: [Errno 2] No such file or directory: 'staticfiles/assets/xbee-wifi-cloud-kit.js'
2018-01-03T00:05:21.500131+00:00 app[web.1]: [Errno 2] No such file or directory: 'staticfiles/assets/Logo_XBee_sml.png'
2018-01-03T00:05:09.634350+00:00 heroku[router]: at=info method=GET path="/" host=enigmatic-gorge-49618.herokuapp.com request_id=0fd92f4f-7e59-4976-bc78-8da487b03716 fwd="73.246.51.39" dyno=web.1 connect=0ms service=10ms status=200 bytes=4091 protocol=https
2018-01-03T00:05:10.018990+00:00 heroku[router]: at=info method=GET path="/static/assets/xbee-wifi-cloud-kit.css" host=enigmatic-gorge-49618.herokuapp.com request_id=192f97d5-6898-47a7-91fa-f16b01cb0fe2 fwd="73.246.51.39" dyno=web.1 connect=0ms service=12ms status=404 bytes=11016 protocol=https
2018-01-03T00:05:21.514606+00:00 heroku[router]: at=info method=GET path="/static/assets/Logo_XBee_sml.png" host=enigmatic-gorge-49618.herokuapp.com request_id=a006629d-cb31-41e1-9d0c-786b7e1ccc98 fwd="73.246.51.39" dyno=web.1 connect=0ms service=15ms status=404 bytes=11484 protocol=https
2018-01-03T00:05:21.444311+00:00 heroku[router]: at=info method=GET path="/static/assets/xbee-wifi-cloud-kit.css" host=enigmatic-gorge-49618.herokuapp.com request_id=da0662dd-646a-4a4f-9985-31f533859c88 fwd="73.246.51.39" dyno=web.1 connect=1ms service=12ms status=404 bytes=11432 protocol=https
2018-01-03T00:05:21.441826+00:00 heroku[router]: at=info method=GET path="/static/vendor/select2/select2.css" host=enigmatic-gorge-49618.herokuapp.com request_id=f61721af-4d85-4011-b329-0e61c72049e1 fwd="73.246.51.39" dyno=web.1 connect=1ms service=10ms status=404 bytes=11406 protocol=https
2018-01-03T00:05:21.434221+00:00 heroku[router]: at=info method=GET path="/static/vendor/jquery-ui/themes/start/jquery.ui.theme.css" host=enigmatic-gorge-49618.herokuapp.com request_id=212f5a92-1cc2-45bd-a319-230f75c8b96f fwd="73.246.51.39" dyno=web.1 connect=0ms service=9ms status=404 bytes=11328 protocol=https
2018-01-03T00:05:21.435958+00:00 heroku[router]: at=info method=GET path="/static/vendor/jquery-ui/themes/base/jquery.ui.slider.css" host=enigmatic-gorge-49618.herokuapp.com request_id=0ed0507b-cc64-4067-b6bb-ce1abcbfc24c fwd="73.246.51.39" dyno=web.1 connect=0ms service=10ms status=404 bytes=11354 protocol=https
heroku run ls -R /app/prod
Running ls -R /app/prod on ⬢ enigmatic-gorge-49618... up, run.3848 (Free)
/app/prod:
static
/app/prod/static:
assets index.html src vendor
/app/prod/static/assets:
background-gradient.png ui-bg_highlight-soft_75_cccccc_1x100_vertical.png
jquery-ui XBee_S6B.png
Logo_Digi.png xbee-wifi-cloud-kit.css
Logo_XBee_sml.png xbee-wifi-cloud-kit.js
tilt-widget
/app/prod/static/assets/jquery-ui:
images jquery-ui.min.css
/app/prod/static/assets/jquery-ui/images:
animated-overlay.gif ui-bg_glass_95_fef1ec_1x400.png
ui-bg_flat_0_aaaaaa_40x100.png ui-bg_highlight-soft_75_cccccc_1x100.png
ui-bg_flat_75_ffffff_40x100.png ui-icons_222222_256x240.png
ui-bg_glass_55_fbf9ee_1x400.png ui-icons_2e83ff_256x240.png
ui-bg_glass_65_ffffff_1x400.png ui-icons_454545_256x240.png
ui-bg_glass_75_dadada_1x400.png ui-icons_888888_256x240.png
ui-bg_glass_75_e6e6e6_1x400.png ui-icons_cd0a0a_256x240.png
/app/prod/static/assets/tilt-widget:
ball.png base.png top.png
/app/prod/static/src:
app
/app/prod/static/src/app:
widgets
/app/prod/static/src/app/widgets:
barGraphVerticalWidget gaugeWidget serialWidget tiltWidget
barGraphWidget lineGraphWidget sliderWidget timeoutWidget
errorWidget onOffDisplayWidget switchWidget
/app/prod/static/src/app/widgets/barGraphVerticalWidget:
barGraphVerticalWidget.js barGraphVerticalWidget.tpl.html
barGraphVerticalWidget.less
/app/prod/static/src/app/widgets/barGraphWidget:
barGraphWidget.js barGraphWidget.less barGraphWidget.tpl.html
/app/prod/static/src/app/widgets/errorWidget:
errorWidget.css errorWidget-modal.tpl.html
errorWidget.js errorWidget.tpl.html
/app/prod/static/src/app/widgets/gaugeWidget:
gaugeWidget.css gaugeWidget.js gaugeWidget.tpl.html
/app/prod/static/src/app/widgets/lineGraphWidget:
lineGraphWidget.js lineGraphWidget.tpl.html
/app/prod/static/src/app/widgets/onOffDisplayWidget:
onOffDisplayWidget.js onOffDisplayWidget.tpl.html
/app/prod/static/src/app/widgets/serialWidget:
serialWidget.css serialWidget.js serialWidget.tpl.html
/app/prod/static/src/app/widgets/sliderWidget:
sliderWidget.css sliderWidget.js sliderWidget.tpl.html
/app/prod/static/src/app/widgets/switchWidget:
switchWidget.css switchWidget.js switchWidget.tpl.html
/app/prod/static/src/app/widgets/tiltWidget:
tiltWidget.css tiltWidget.js tiltWidget.tpl.html
/app/prod/static/src/app/widgets/timeoutWidget:
timeoutWidget.js timeoutWidget.tpl.html
/app/prod/static/vendor:
jquery-ui select2 toastr
/app/prod/static/vendor/jquery-ui:
themes
/app/prod/static/vendor/jquery-ui/themes:
base start
/app/prod/static/vendor/jquery-ui/themes/base:
images jquery.ui.progressbar.css jquery.ui.slider.css
/app/prod/static/vendor/jquery-ui/themes/base/images:
animated-overlay.gif ui-bg_glass_95_fef1ec_1x400.png
ui-bg_flat_0_aaaaaa_40x100.png ui-bg_highlight-soft_75_cccccc_1x100.png
ui-bg_flat_75_ffffff_40x100.png ui-icons_222222_256x240.png
ui-bg_glass_55_fbf9ee_1x400.png ui-icons_2e83ff_256x240.png
ui-bg_glass_65_ffffff_1x400.png ui-icons_454545_256x240.png
ui-bg_glass_75_dadada_1x400.png ui-icons_888888_256x240.png
ui-bg_glass_75_e6e6e6_1x400.png ui-icons_cd0a0a_256x240.png
/app/prod/static/vendor/jquery-ui/themes/start:
images jquery.ui.theme.css
/app/prod/static/vendor/jquery-ui/themes/start/images:
animated-overlay.gif ui-bg_inset-hard_100_fcfdfd_1x100.png
ui-bg_flat_55_999999_40x100.png ui-icons_0078ae_256x240.png
ui-bg_flat_75_aaaaaa_40x100.png ui-icons_056b93_256x240.png
ui-bg_glass_45_0078ae_1x400.png ui-icons_d8e7f3_256x240.png
ui-bg_glass_55_f8da4e_1x400.png ui-icons_e0fdff_256x240.png
ui-bg_glass_75_79c9ec_1x400.png ui-icons_f5e175_256x240.png
ui-bg_gloss-wave_45_e14f1c_500x100.png ui-icons_f7a50d_256x240.png
ui-bg_gloss-wave_50_6eac2c_500x100.png ui-icons_fcd113_256x240.png
ui-bg_gloss-wave_75_2191c0_500x100.png
/app/prod/static/vendor/select2:
select2.css select2.png select2-spinner.gif
/app/prod/static/vendor/toastr:
toastr.min.css
If you are running out of time then we can see tomorrow
$ heroku run python manage.py syncdb After executing the above command I am getting the following error.Please have a look Traceback (most recent call last): File "/app/xbeewifiapp/settings.py", line 344, in
SECRET_CRYPTO_KEY = binascii.a2b_hex(os.environ['AES_CRYPTO_KEY_HEX'])
File "/app/.heroku/python/lib/python3.6/os.py", line 669, in getitem
raise KeyError(key) from None
KeyError: 'AES_CRYPTO_KEY_HEX'
During handling of the above exception, another exception occurred:
Traceback (most recent call last): File "manage.py", line 18, in
execute_from_command_line(sys.argv)
File "/app/.heroku/python/lib/python3.6/site-packages/django/core/management/init.py", line 453, in execute_from_command_line
utility.execute()
File "/app/.heroku/python/lib/python3.6/site-packages/django/core/management/init.py", line 392, in execute
self.fetch_command(subcommand).run_from_argv(self.argv)
File "/app/.heroku/python/lib/python3.6/site-packages/django/core/management/init.py", line 263, in fetch_command
app_name = get_commands()[subcommand]
File "/app/.heroku/python/lib/python3.6/site-packages/django/core/management/init.py", line 109, in get_commands
apps = settings.INSTALLED_APPS
File "/app/.heroku/python/lib/python3.6/site-packages/django/conf/init.py", line 53, in getattr
self._setup(name)
File "/app/.heroku/python/lib/python3.6/site-packages/django/conf/init.py", line 48, in _setup
self._wrapped = Settings(settings_module)
File "/app/.heroku/python/lib/python3.6/site-packages/django/conf/init.py", line 132, in init
mod = importlib.import_module(self.SETTINGS_MODULE)
File "/app/.heroku/python/lib/python3.6/site-packages/django/utils/importlib.py", line 35, in import_module
import(name)
File "/app/xbeewifiapp/settings.py", line 348, in
os.environ['AES_CRYPTO_KEY_HEX'] = SECRET_CRYPTO_KEY
File "/app/.heroku/python/lib/python3.6/os.py", line 674, in setitem
value = self.encodevalue(value)
File "/app/.heroku/python/lib/python3.6/os.py", line 744, in encode
raise TypeError("str expected, not %s" % type(value).name)
TypeError: str expected, not bytes