digidotcom / xbeewificloudkit

XBee Wi-Fi Cloud Kit
Mozilla Public License 2.0
16 stars 18 forks source link

heroku run python manage.py syncdb #8

Open arunnediyasala opened 6 years ago

arunnediyasala commented 6 years ago

$ 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

mikewadsten commented 6 years ago

Hmm. The files are definitely there on the server...

heroku ps:restart -a enigmatic-gorge-49618

This will reboot the application. If it's still not working, I'll try it out myself on a new Heroku instance tomorrow afternoon if I have time.

In the meantime, since I see you're running on a Linux machine, you could do this to try to force the application to find those files:

sed -i '121iSTATICFILES_DIRS = ("/app/xbeewifiapp/static", "/app/prod/static")' xbeewifiapp/settings.py
git commit -m "Hardcode STATICFILES_DIRS value" -- xbeewifiapp/settings.py
sudo git push heroku master

(On the git push command, you can remove the sudo if you fixed the master.lock issue as I described in a previous comment)

arunnediyasala commented 6 years ago

Thanks for your time and support cu tomorrow . I am working on this now I will give you update later .Once again thanks for all help

arunnediyasala commented 6 years ago

Hi I given path to the following files . sed -i '121iSTATICFILES_DIRS = ("/xbeewifiapp/static", "/prod/static")' xbeewifiapp/settings.py

Then I got the logs file like this

2018-01-03T14:57:25.554056+00:00 app[web.1]: [Errno 2] No such file or directory: 'staticfiles/vendor/jquery-ui/themes/start/jquery.ui.theme.css'
2018-01-03T14:57:25.563897+00:00 app[web.1]: [Errno 2] No such file or directory: 'staticfiles/vendor/toastr/toastr.min.css'
2018-01-03T14:57:25.566799+00:00 app[web.1]: [Errno 2] No such file or directory: 'staticfiles/assets/xbee-wifi-cloud-kit.css'
2018-01-03T14:57:25.582231+00:00 app[web.1]: [Errno 2] No such file or directory: 'staticfiles/vendor/select2/select2.css'
2018-01-03T14:57:25.591307+00:00 app[web.1]: [Errno 2] No such file or directory: 'staticfiles/assets/xbee-wifi-cloud-kit.js'
2018-01-03T14:57:25.661684+00:00 app[web.1]: [Errno 2] No such file or directory: 'staticfiles/assets/Logo_XBee_sml.png'
2018-01-03T14:57:25.602283+00:00 heroku[router]: at=info method=GET path="/static/assets/xbee-wifi-cloud-kit.js" host=enigmatic-gorge-49618.herokuapp.com request_id=1a321baa-ad08-4163-b9e8-f518524ba614 fwd="73.246.51.39" dyno=web.1 connect=1ms service=85ms status=404 bytes=7350 protocol=https
2018-01-03T14:57:25.568174+00:00 heroku[router]: at=info method=GET path="/static/vendor/toastr/toastr.min.css" host=enigmatic-gorge-49618.herokuapp.com request_id=06653366-e9cc-4913-8139-46f16e8092bc fwd="73.246.51.39" dyno=web.1 connect=1ms service=126ms status=404 bytes=7272 protocol=https
2018-01-03T14:57:25.934238+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=77437919-afda-4d62-ad88-c779d290662f fwd="73.246.51.39" dyno=web.1 connect=3ms service=11ms status=404 bytes=7454 protocol=https
2018-01-03T14:57:25.925018+00:00 app[web.1]: [Errno 2] No such file or directory: 'staticfiles/assets/xbee-wifi-cloud-kit.css'
2018-01-03T14:57:25.926346+00:00 app[web.1]: [Errno 2] No such file or directory: 'staticfiles/vendor/toastr/toastr.min.css'
2018-01-03T14:57:25.927573+00:00 app[web.1]: [Errno 2] No such file or directory: 'staticfiles/vendor/jquery-ui/themes/base/jquery.ui.slider.css'
2018-01-03T14:57:25.932853+00:00 app[web.1]: [Errno 2] No such file or directory: 'staticfiles/vendor/jquery-ui/themes/base/jquery.ui.progressbar.css'
2018-01-03T14:57:25.931279+00:00 app[web.1]: [Errno 2] No such file or directory: 'staticfiles/vendor/select2/select2.css'
2018-01-03T14:57:25.934060+00:00 app[web.1]: [Errno 2] No such file or directory: 'staticfiles/vendor/jquery-ui/themes/start/jquery.ui.theme.css'
2018-01-03T14:57:25.988559+00:00 app[web.1]: [Errno 2] No such file or directory: 'staticfiles/assets/Logo_XBee_sml.png'
2018-01-03T14:57:25.973910+00:00 app[web.1]: [Errno 2] No such file or directory: 'staticfiles/assets/xbee-wifi-cloud-kit.js'
2018-01-03T14:57:26.569798+00:00 heroku[router]: at=info method=GET path="/static/vendor/toastr/toastr.min.css" host=enigmatic-gorge-49618.herokuapp.com request_id=e170010b-f504-4d7b-b120-4b4677a12d45 fwd="73.246.51.39" dyno=web.1 connect=3ms service=6ms status=404 bytes=7636 protocol=https
2018-01-03T14:57:26.629508+00:00 heroku[router]: at=info method=GET path="/static/assets/Logo_XBee_sml.png" host=enigmatic-gorge-49618.herokuapp.com request_id=0c06582e-7a97-4aeb-9c6e-423bd282d73a fwd="73.246.51.39" dyno=web.1 connect=1ms service=8ms status=404 bytes=7792 protocol=https
2018-01-03T14:57:26.764021+00:00 heroku[router]: at=info method=GET path="/" host=enigmatic-gorge-49618.herokuapp.com request_id=611d7cbe-e084-43ea-9de4-e0cd05509bc3 fwd="73.246.51.39" dyno=web.1 connect=1ms service=8ms status=200 bytes=4091 protocol=https
2018-01-03T14:57:26.825058+00:00 app[web.1]: [Errno 2] No such file or directory: 'staticfiles/assets/xbee-wifi-cloud-kit.css'
2018-01-03T14:57:26.826810+00:00 app[web.1]: [Errno 2] No such file or directory: 'staticfiles/vendor/jquery-ui/themes/base/jquery.ui.slider.css'
2018-01-03T14:57:26.828420+00:00 app[web.1]: [Errno 2] No such file or directory: 'staticfiles/vendor/toastr/toastr.min.css'
2018-01-03T14:57:26.830152+00:00 app[web.1]: [Errno 2] No such file or directory: 'staticfiles/vendor/select2/select2.css'
2018-01-03T14:57:26.831922+00:00 app[web.1]: [Errno 2] No such file or directory: 'staticfiles/vendor/jquery-ui/themes/start/jquery.ui.theme.css'
2018-01-03T14:57:26.833681+00:00 app[web.1]: [Errno 2] No such file or directory: 'staticfiles/vendor/jquery-ui/themes/base/jquery.ui.progressbar.css'
2018-01-03T14:57:26.888662+00:00 app[web.1]: [Errno 2] No such file or directory: 'staticfiles/assets/xbee-wifi-cloud-kit.js'
2018-01-03T14:57:26.890215+00:00 app[web.1]: [Errno 2] No such file or directory: 'staticfiles/assets/Logo_XBee_sml.png'
2018-01-03T14:57:25.935870+00:00 heroku[router]: at=info method=GET path="/static/vendor/select2/select2.css" host=enigmatic-gorge-49618.herokuapp.com request_id=88f203df-7c74-4491-9365-53a7f03744a7 fwd="73.246.51.39" dyno=web.1 connect=3ms service=12ms status=404 bytes=7480 protocol=https
2018-01-03T14:57:25.511938+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=0941a933-f407-4317-8dbc-2695e2edd703 fwd="73.246.51.39" dyno=web.1 connect=1ms service=73ms status=404 bytes=7220 protocol=https
2018-01-03T14:57:26.895009+00:00 heroku[router]: at=info method=GET path="/static/assets/Logo_XBee_sml.png" host=enigmatic-gorge-49618.herokuapp.com request_id=dc93f62f-e8e8-475b-baa4-21124f1a367e fwd="73.246.51.39" dyno=web.1 connect=1ms service=13ms status=404 bytes=8000 protocol=https
2018-01-03T14:57:27.402769+00:00 heroku[router]: at=info method=GET path="/static/assets/xbee-wifi-cloud-kit.css" host=enigmatic-gorge-49618.herokuapp.com request_id=a8a90023-67bb-4082-a622-c7a464c7bd74 fwd="73.246.51.39" dyno=web.1 connect=2ms service=11ms status=404 bytes=8052 protocol=https
2018-01-03T14:57:27.397049+00:00 app[web.1]: [Errno 2] No such file or directory: 'staticfiles/vendor/jquery-ui/themes/base/jquery.ui.slider.css'
2018-01-03T14:57:27.399601+00:00 app[web.1]: [Errno 2] No such file or directory: 'staticfiles/assets/xbee-wifi-cloud-kit.css'
2018-01-03T14:57:27.401136+00:00 app[web.1]: [Errno 2] No such file or directory: 'staticfiles/vendor/jquery-ui/themes/base/jquery.ui.progressbar.css'
2018-01-03T14:57:27.402660+00:00 app[web.1]: [Errno 2] No such file or directory: 'staticfiles/vendor/jquery-ui/themes/start/jquery.ui.theme.css'
2018-01-03T14:57:27.404214+00:00 app[web.1]: [Errno 2] No such file or directory: 'staticfiles/vendor/select2/select2.css'
2018-01-03T14:57:27.405805+00:00 app[web.1]: [Errno 2] No such file or directory: 'staticfiles/vendor/toastr/toastr.min.css'
2018-01-03T14:57:27.456791+00:00 app[web.1]: [Errno 2] No such file or directory: 'staticfiles/assets/xbee-wifi-cloud-kit.js'
2018-01-03T14:57:27.458536+00:00 app[web.1]: [Errno 2] No such file or directory: 'staticfiles/assets/Logo_XBee_sml.png'
2018-01-03T14:57:27.648694+00:00 app[web.1]: [Errno 2] No such file or directory: 'staticfiles/vendor/jquery-ui/themes/base/jquery.ui.slider.css'
2018-01-03T14:57:27.650930+00:00 app[web.1]: [Errno 2] No such file or directory: 'staticfiles/vendor/toastr/toastr.min.css'
2018-01-03T14:57:27.652510+00:00 app[web.1]: [Errno 2] No such file or directory: 'staticfiles/vendor/jquery-ui/themes/base/jquery.ui.progressbar.css'
2018-01-03T14:57:27.654087+00:00 app[web.1]: [Errno 2] No such file or directory: 'staticfiles/vendor/select2/select2.css'
2018-01-03T14:57:27.662853+00:00 app[web.1]: [Errno 2] No such file or directory: 'staticfiles/assets/xbee-wifi-cloud-kit.css'
2018-01-03T14:57:27.668053+00:00 app[web.1]: [Errno 2] No such file or directory: 'staticfiles/vendor/jquery-ui/themes/start/jquery.ui.theme.css'
2018-01-03T14:57:27.694715+00:00 app[web.1]: [Errno 2] No such file or directory: 'staticfiles/assets/xbee-wifi-cloud-kit.js'
2018-01-03T14:57:27.720670+00:00 app[web.1]: [Errno 2] No such file or directory: 'staticfiles/assets/Logo_XBee_sml.png'
2018-01-03T14:57:27.893101+00:00 app[web.1]: [Errno 2] No such file or directory: 'staticfiles/vendor/jquery-ui/themes/base/jquery.ui.slider.css'
2018-01-03T14:57:27.894862+00:00 app[web.1]: [Errno 2] No such file or directory: 'staticfiles/assets/xbee-wifi-cloud-kit.css'
2018-01-03T14:57:27.896465+00:00 app[web.1]: [Errno 2] No such file or directory: 'staticfiles/vendor/jquery-ui/themes/base/jquery.ui.progressbar.css'
2018-01-03T14:57:27.898283+00:00 app[web.1]: [Errno 2] No such file or directory: 'staticfiles/vendor/toastr/toastr.min.css'
2018-01-03T14:57:27.900935+00:00 app[web.1]: [Errno 2] No such file or directory: 'staticfiles/vendor/select2/select2.css'
2018-01-03T14:57:27.948420+00:00 app[web.1]: [Errno 2] No such file or directory: 'staticfiles/assets/xbee-wifi-cloud-kit.js'
2018-01-03T14:57:27.903091+00:00 app[web.1]: [Errno 2] No such file or directory: 'staticfiles/vendor/jquery-ui/themes/start/jquery.ui.theme.css'
2018-01-03T14:57:27.955617+00:00 app[web.1]: [Errno 2] No such file or directory: 'staticfiles/assets/Logo_XBee_sml.png'
2018-01-03T14:57:25.936470+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=94b6487a-a242-463e-9b4a-b7edbe696fb6 fwd="73.246.51.39" dyno=web.1 connect=3ms service=12ms status=404 bytes=7506 protocol=https
2018-01-03T14:57:26.575655+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=cfdfd9dc-0c3c-4c7e-990a-46e7e08b9e51 fwd="73.246.51.39" dyno=web.1 connect=3ms service=12ms status=404 bytes=7688 protocol=https
2018-01-03T14:57:27.408877+00:00 heroku[router]: at=info method=GET path="/static/vendor/select2/select2.css" host=enigmatic-gorge-49618.herokuapp.com request_id=60ccea18-2fdd-4021-8ecd-2a4bd45deb35 fwd="73.246.51.39" dyno=web.1 connect=2ms service=14ms status=404 bytes=8130 protocol=https
2018-01-03T14:57:25.585977+00:00 heroku[router]: at=info method=GET path="/static/vendor/select2/select2.css" host=enigmatic-gorge-49618.herokuapp.com request_id=8afd27fb-5545-4566-b44e-018a7cf3a304 fwd="73.246.51.39" dyno=web.1 connect=2ms service=144ms status=404 bytes=7324 protocol=https
2018-01-03T14:57:25.665817+00:00 heroku[router]: at=info method=GET path="/static/assets/Logo_XBee_sml.png" host=enigmatic-gorge-49618.herokuapp.com request_id=57ac9f13-16b2-470d-8d99-b500c6a37424 fwd="73.246.51.39" dyno=web.1 connect=1ms service=38ms status=404 bytes=7376 protocol=https
2018-01-03T14:57:25.868376+00:00 heroku[router]: at=info method=GET path="/" host=enigmatic-gorge-49618.herokuapp.com request_id=aa38b2eb-abc8-4e2f-a5b4-020802bc7e9f fwd="73.246.51.39" dyno=web.1 connect=1ms service=16ms status=200 bytes=4091 protocol=https
2018-01-03T14:57:27.596980+00:00 heroku[router]: at=info method=GET path="/" host=enigmatic-gorge-49618.herokuapp.com request_id=9101b477-64c4-464d-8119-7ed7af4b4a81 fwd="73.246.51.39" dyno=web.1 connect=1ms service=8ms status=200 bytes=4091 protocol=https
2018-01-03T14:57:27.657211+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=cca65968-e32a-4ee4-8dd7-27a6fcf48cad fwd="73.246.51.39" dyno=web.1 connect=2ms service=9ms status=404 bytes=8286 protocol=https
2018-01-03T14:57:25.927313+00:00 heroku[router]: at=info method=GET path="/static/assets/xbee-wifi-cloud-kit.css" host=enigmatic-gorge-49618.herokuapp.com request_id=613030bb-196c-44d6-8905-8c16e728a9f0 fwd="73.246.51.39" dyno=web.1 connect=2ms service=6ms status=404 bytes=7402 protocol=https
2018-01-03T14:57:26.612791+00:00 heroku[router]: at=info method=GET path="/static/assets/xbee-wifi-cloud-kit.js" host=enigmatic-gorge-49618.herokuapp.com request_id=fcc5d71c-a207-4361-9bee-ec69be1c2b10 fwd="73.246.51.39" dyno=web.1 connect=1ms service=5ms status=404 bytes=7766 protocol=https
2018-01-03T14:57:26.829569+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=18cbe2d5-8657-44e6-9d83-bafd9601870c fwd="73.246.51.39" dyno=web.1 connect=2ms service=8ms status=404 bytes=7844 protocol=https
2018-01-03T14:57:26.830467+00:00 heroku[router]: at=info method=GET path="/static/assets/xbee-wifi-cloud-kit.css" host=enigmatic-gorge-49618.herokuapp.com request_id=f1cc5982-f3d5-4280-a6eb-2810df21b48f fwd="73.246.51.39" dyno=web.1 connect=1ms service=7ms status=404 bytes=7818 protocol=https
2018-01-03T14:57:27.461556+00:00 heroku[router]: at=info method=GET path="/static/assets/xbee-wifi-cloud-kit.js" host=enigmatic-gorge-49618.herokuapp.com request_id=8b2bb24d-2ed6-4c37-8b35-cb91b794a207 fwd="73.246.51.39" dyno=web.1 connect=2ms service=7ms status=404 bytes=8182 protocol=https
2018-01-03T14:57:27.653876+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=8a37eded-3f02-4f0a-8b50-f576bd4ab3d1 fwd="73.246.51.39" dyno=web.1 connect=2ms service=7ms status=404 bytes=8234 protocol=https
2018-01-03T14:57:27.953146+00:00 heroku[router]: at=info method=GET path="/static/assets/xbee-wifi-cloud-kit.js" host=enigmatic-gorge-49618.herokuapp.com request_id=d6ae712b-8d67-42de-8d53-594087c84af1 fwd="73.246.51.39" dyno=web.1 connect=2ms service=11ms status=404 bytes=8598 protocol=https
2018-01-03T14:57:25.937628+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=0db575e8-0046-4fc1-ad59-b059d6abc6bc fwd="73.246.51.39" dyno=web.1 connect=3ms service=13ms status=404 bytes=7532 protocol=https
2018-01-03T14:57:25.930553+00:00 heroku[router]: at=info method=GET path="/static/vendor/toastr/toastr.min.css" host=enigmatic-gorge-49618.herokuapp.com request_id=337a0e90-f8e9-4984-bc2c-3e3d1e0238e8 fwd="73.246.51.39" dyno=web.1 connect=2ms service=7ms status=404 bytes=7428 protocol=https
2018-01-03T14:57:26.834230+00:00 heroku[router]: at=info method=GET path="/static/vendor/select2/select2.css" host=enigmatic-gorge-49618.herokuapp.com request_id=c4fe0c68-041a-4d3b-81ba-7e60384609d2 fwd="73.246.51.39" dyno=web.1 connect=2ms service=11ms status=404 bytes=7896 protocol=https
2018-01-03T14:57:25.557779+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=b00c2709-ced0-4b12-8839-0231502c1de1 fwd="73.246.51.39" dyno=web.1 connect=1ms service=116ms status=404 bytes=7246 protocol=https
2018-01-03T14:57:27.905628+00:00 heroku[router]: at=info method=GET path="/static/vendor/select2/select2.css" host=enigmatic-gorge-49618.herokuapp.com request_id=b9998460-7399-446a-8f0e-18b7956c4029 fwd="73.246.51.39" dyno=web.1 connect=3ms service=16ms status=404 bytes=8546 protocol=https
2018-01-03T14:57:27.462864+00:00 heroku[router]: at=info method=GET path="/static/assets/Logo_XBee_sml.png" host=enigmatic-gorge-49618.herokuapp.com request_id=36ce2090-2448-4d2d-a3f9-cde222dd90c9 fwd="73.246.51.39" dyno=web.1 connect=2ms service=8ms status=404 bytes=8208 protocol=https
2018-01-03T14:57:26.833468+00:00 heroku[router]: at=info method=GET path="/static/vendor/toastr/toastr.min.css" host=enigmatic-gorge-49618.herokuapp.com request_id=7e690cce-cb76-4913-a000-ee31fdc46c5a fwd="73.246.51.39" dyno=web.1 connect=1ms service=10ms status=404 bytes=7870 protocol=https
2018-01-03T14:57:27.902747+00:00 heroku[router]: at=info method=GET path="/static/vendor/toastr/toastr.min.css" host=enigmatic-gorge-49618.herokuapp.com request_id=d2f88c83-c205-426f-831f-9d53049f8f91 fwd="73.246.51.39" dyno=web.1 connect=3ms service=13ms status=404 bytes=8520 protocol=https
2018-01-03T14:57:26.575831+00:00 heroku[router]: at=info method=GET path="/static/assets/xbee-wifi-cloud-kit.css" host=enigmatic-gorge-49618.herokuapp.com request_id=4a9d7513-35df-4464-91ec-43ba48cce39b fwd="73.246.51.39" dyno=web.1 connect=2ms service=12ms status=404 bytes=7662 protocol=https
2018-01-03T14:57:27.409831+00:00 heroku[router]: at=info method=GET path="/static/vendor/toastr/toastr.min.css" host=enigmatic-gorge-49618.herokuapp.com request_id=498fdefe-583f-4040-86e3-89f3f9afea98 fwd="73.246.51.39" dyno=web.1 connect=2ms service=15ms status=404 bytes=8156 protocol=https
2018-01-03T14:57:27.726751+00:00 heroku[router]: at=info method=GET path="/static/assets/Logo_XBee_sml.png" host=enigmatic-gorge-49618.herokuapp.com request_id=a3e1ccf2-ad49-4a05-8a35-3b76b6836a7c fwd="73.246.51.39" dyno=web.1 connect=1ms service=10ms status=404 bytes=8416 protocol=https
2018-01-03T14:57:27.898197+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=7f615b38-a2bb-4551-ab67-e0d7338bd7ec fwd="73.246.51.39" dyno=web.1 connect=2ms service=9ms status=404 bytes=8442 protocol=https
2018-01-03T14:57:26.893393+00:00 heroku[router]: at=info method=GET path="/static/assets/xbee-wifi-cloud-kit.js" host=enigmatic-gorge-49618.herokuapp.com request_id=09f35bcb-c44e-4246-8ce4-f121d225f50f fwd="73.246.51.39" dyno=web.1 connect=2ms service=12ms status=404 bytes=7974 protocol=https
2018-01-03T14:57:26.566954+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=b45e13b1-1b1d-45fa-8464-9b667b846b6d fwd="73.246.51.39" dyno=web.1 connect=2ms service=6ms status=404 bytes=7610 protocol=https
2018-01-03T14:57:27.958937+00:00 heroku[router]: at=info method=GET path="/static/assets/Logo_XBee_sml.png" host=enigmatic-gorge-49618.herokuapp.com request_id=bd85feaa-0ab5-419a-9b80-a21fb4c0cd23 fwd="73.246.51.39" dyno=web.1 connect=1ms service=7ms status=404 bytes=8624 protocol=https
2018-01-03T14:57:27.657841+00:00 heroku[router]: at=info method=GET path="/static/vendor/select2/select2.css" host=enigmatic-gorge-49618.herokuapp.com request_id=72ee4aa8-82be-4e81-a8bf-6bc497b8efb5 fwd="73.246.51.39" dyno=web.1 connect=3ms service=8ms status=404 bytes=8312 protocol=https
2018-01-03T14:57:26.579615+00:00 heroku[router]: at=info method=GET path="/static/vendor/select2/select2.css" host=enigmatic-gorge-49618.herokuapp.com request_id=78a8105b-c315-4722-8459-a2037b2f7c5a fwd="73.246.51.39" dyno=web.1 connect=3ms service=15ms status=404 bytes=7740 protocol=https
2018-01-03T14:57:27.900066+00:00 heroku[router]: at=info method=GET path="/static/assets/xbee-wifi-cloud-kit.css" host=enigmatic-gorge-49618.herokuapp.com request_id=d2afdd43-4196-41b2-b175-d5b25bf636f4 fwd="73.246.51.39" dyno=web.1 connect=2ms service=10ms status=404 bytes=8468 protocol=https
2018-01-03T14:57:26.564653+00:00 app[web.1]: [Errno 2] No such file or directory: 'staticfiles/vendor/jquery-ui/themes/base/jquery.ui.slider.css'
2018-01-03T14:57:26.566264+00:00 app[web.1]: [Errno 2] No such file or directory: 'staticfiles/vendor/toastr/toastr.min.css'
2018-01-03T14:57:26.567419+00:00 app[web.1]: [Errno 2] No such file or directory: 'staticfiles/assets/xbee-wifi-cloud-kit.css'
2018-01-03T14:57:26.572703+00:00 app[web.1]: [Errno 2] No such file or directory: 'staticfiles/vendor/jquery-ui/themes/start/jquery.ui.theme.css'
2018-01-03T14:57:26.573949+00:00 app[web.1]: [Errno 2] No such file or directory: 'staticfiles/vendor/jquery-ui/themes/base/jquery.ui.progressbar.css'
2018-01-03T14:57:26.575183+00:00 app[web.1]: [Errno 2] No such file or directory: 'staticfiles/vendor/select2/select2.css'
2018-01-03T14:57:26.611077+00:00 app[web.1]: [Errno 2] No such file or directory: 'staticfiles/assets/xbee-wifi-cloud-kit.js'
2018-01-03T14:57:26.624940+00:00 app[web.1]: [Errno 2] No such file or directory: 'staticfiles/assets/Logo_XBee_sml.png'
2018-01-03T14:57:26.838339+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=a6084171-8082-4083-bf2a-36256cce4268 fwd="73.246.51.39" dyno=web.1 connect=1ms service=14ms status=404 bytes=7948 protocol=https
2018-01-03T14:57:27.337136+00:00 heroku[router]: at=info method=GET path="/" host=enigmatic-gorge-49618.herokuapp.com request_id=e609326a-656a-428f-a503-d296268c91e2 fwd="73.246.51.39" dyno=web.1 connect=1ms service=5ms status=200 bytes=4091 protocol=https
2018-01-03T14:57:27.406074+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=511e5229-8b50-4403-9435-fdf6b5fca07d fwd="73.246.51.39" dyno=web.1 connect=2ms service=11ms status=404 bytes=8078 protocol=https
2018-01-03T14:57:27.656334+00:00 heroku[router]: at=info method=GET path="/static/vendor/toastr/toastr.min.css" host=enigmatic-gorge-49618.herokuapp.com request_id=b2aa7ee6-a2ed-4f59-89c8-c557994eab0e fwd="73.246.51.39" dyno=web.1 connect=2ms service=8ms status=404 bytes=8260 protocol=https

If you could give email id of yours then I will add you in my heroku account so that you can test with my acccount

mikewadsten commented 6 years ago

I would rather start from a freshly created Heroku app, to eliminate the possibility of conflicts or strange behavior coming about from your earlier changes (e.g. to the requirements file).

Actually, you could do this yourself from the command line. I believe these commands would result in you having a heroku2 remote where you could push the current code:

$ heroku create --remote heroku2
$ git push heroku2 master
arunnediyasala commented 6 years ago

I am getting following error while pushing

$ python manage.py collectstatic --noinput
remote:        Traceback (most recent call last):
remote:          File "/app/.heroku/python/lib/python2.7/site-packages/django/core/management/base.py", line 222, in run_from_argv
remote:            self.execute(*args, **options.__dict__)
remote:          File "/app/.heroku/python/lib/python2.7/site-packages/django/core/management/base.py", line 255, in execute
remote:            output = self.handle(*args, **options)
remote:          File "/app/.heroku/python/lib/python2.7/site-packages/django/core/management/base.py", line 385, in handle
remote:            return self.handle_noargs(**options)
remote:          File "/app/.heroku/python/lib/python2.7/site-packages/django/contrib/staticfiles/management/commands/collectstatic.py", line 164, in handle_noargs
remote:            collected = self.collect()
remote:          File "/app/.heroku/python/lib/python2.7/site-packages/django/contrib/staticfiles/management/commands/collectstatic.py", line 105, in collect
remote:            for path, storage in finder.list(self.ignore_patterns):
remote:          File "/app/.heroku/python/lib/python2.7/site-packages/django/contrib/staticfiles/finders.py", line 106, in list
remote:            for path in utils.get_files(storage, ignore_patterns):
remote:          File "/app/.heroku/python/lib/python2.7/site-packages/django/contrib/staticfiles/utils.py", line 25, in get_files
remote:            directories, files = storage.listdir(location)
remote:          File "/app/.heroku/python/lib/python2.7/site-packages/django/core/files/storage.py", line 248, in listdir
remote:            for entry in os.listdir(path):
remote:        OSError: [Errno 2] No such file or directory: '/app/xbeewifiapp/static'
remote: 
remote:  !     Error while running '$ python manage.py collectstatic --noinput'.
remote:        See traceback above for details.
remote: 
remote:        You may need to update application code to resolve this error.
remote:        Or, you can disable collectstatic for this application:
remote: 
remote:           $ heroku config:set DISABLE_COLLECTSTATIC=1
remote: 
remote:        https://devcenter.heroku.com/articles/django-assets
remote:  !     Push rejected, failed to compile Python app.
remote: 
remote:  !     Push failed
remote: Verifying deploy...
remote: 
remote: !   Push rejected to calm-tor-49203.
remote: 
To https://git.heroku.com/calm-tor-49203.git
 ! [remote rejected] master -> master (pre-receive hook declined)
error: failed to push some refs to 'https://git.heroku.com/calm-tor-49203.git'
mikewadsten commented 6 years ago
$ heroku config:set -a calm-tor-49203 DISABLE_COLLECTSTATIC=1
$ git push heroku2 master

On Wed, Jan 3, 2018, 9:32 AM arunnediyasala notifications@github.com wrote:

I am getting following error while pushing

$ python manage.py collectstatic --noinput remote: Traceback (most recent call last): remote: File "/app/.heroku/python/lib/python2.7/site-packages/django/core/management/base.py", line 222, in run_from_argv remote: self.execute(*args, *options.dict) remote: File "/app/.heroku/python/lib/python2.7/site-packages/django/core/management/base.py", line 255, in execute remote: output = self.handle(args, options) remote: File "/app/.heroku/python/lib/python2.7/site-packages/django/core/management/base.py", line 385, in handle remote: return self.handle_noargs(options) remote: File "/app/.heroku/python/lib/python2.7/site-packages/django/contrib/staticfiles/management/commands/collectstatic.py", line 164, in handle_noargs remote: collected = self.collect() remote: File "/app/.heroku/python/lib/python2.7/site-packages/django/contrib/staticfiles/management/commands/collectstatic.py", line 105, in collect remote: for path, storage in finder.list(self.ignore_patterns): remote: File "/app/.heroku/python/lib/python2.7/site-packages/django/contrib/staticfiles/finders.py", line 106, in list remote: for path in utils.get_files(storage, ignore_patterns): remote: File "/app/.heroku/python/lib/python2.7/site-packages/django/contrib/staticfiles/utils.py", line 25, in get_files remote: directories, files = storage.listdir(location) remote: File "/app/.heroku/python/lib/python2.7/site-packages/django/core/files/storage.py", line 248, in listdir remote: for entry in os.listdir(path): remote: OSError: [Errno 2] No such file or directory: '/app/xbeewifiapp/static' remote: remote: ! Error while running '$ python manage.py collectstatic --noinput'. remote: See traceback above for details. remote: remote: You may need to update application code to resolve this error. remote: Or, you can disable collectstatic for this application: remote: remote: $ heroku config:set DISABLE_COLLECTSTATIC=1 remote: remote: https://devcenter.heroku.com/articles/django-assets remote: ! Push rejected, failed to compile Python app. remote: remote: ! Push failed remote: Verifying deploy... remote: remote: ! Push rejected to calm-tor-49203. remote: To https://git.heroku.com/calm-tor-49203.git ! [remote rejected] master -> master (pre-receive hook declined) error: failed to push some refs to 'https://git.heroku.com/calm-tor-49203.git'

— You are receiving this because you commented.

Reply to this email directly, view it on GitHub https://github.com/digidotcom/xbeewificloudkit/issues/8#issuecomment-355041191, or mute the thread https://github.com/notifications/unsubscribe-auth/ACF3axjgK4igrg-MQHeOGaRDJU2e0V45ks5tG52ogaJpZM4RQ0HM .

arunnediyasala commented 6 years ago

So the final command should be ..

heroku2 run python manage.py syncdb
mikewadsten commented 6 years ago

Not quite.

heroku run -a calm-tor-49203 python manage.py syncdb

The "heroku2" name is only known and being used by Git. You have to tell the heroku program which app you're talking to, hence the -a and the app name.

On Wed, Jan 3, 2018, 9:40 AM arunnediyasala notifications@github.com wrote:

So the final command should be

heroku2 run python manage.py syncdb

— You are receiving this because you commented.

Reply to this email directly, view it on GitHub https://github.com/digidotcom/xbeewificloudkit/issues/8#issuecomment-355043211, or mute the thread https://github.com/notifications/unsubscribe-auth/ACF3a3W45O2p-_vH1au5piHTh0bBfgoYks5tG59igaJpZM4RQ0HM .

arunnediyasala commented 6 years ago

Should I define super user `

heroku run -a calm-tor-49203 python manage.py syncdb ▸ heroku-cli: update available from 6.14.43-73d5876 to 6.15.2-a21a411 Running python manage.py syncdb on ⬢ calm-tor-49203... up, run.3255 (Free) Creating tables ... Creating table auth_permission Creating table auth_group_permissions Creating table auth_group Creating table django_content_type Creating table django_session Creating table django_site Creating table digi_deviceclouduser Creating table dashboard_dashboard

You just installed Django's auth system, which means you don't have any superusers defined. Would you like to create one now? (yes/no): ``

arunnediyasala commented 6 years ago

In my webpage I got Application error here is the log

heroku logs -n 100 --app calm-tor-49203
 ▸    heroku-cli: update available from 6.14.43-73d5876 to 6.15.2-a21a411
2018-01-03T15:29:20.400224+00:00 app[api]: Release v1 created by user arunnediyasala@gmail.com
2018-01-03T15:29:20.515364+00:00 app[api]: Release v2 created by user arunnediyasala@gmail.com
2018-01-03T15:29:20.515364+00:00 app[api]: Enable Logplex by user arunnediyasala@gmail.com
2018-01-03T15:29:20.400224+00:00 app[api]: Initial release by user arunnediyasala@gmail.com
2018-01-03T15:29:48.000000+00:00 app[api]: Build started by user arunnediyasala@gmail.com
2018-01-03T15:29:48.000000+00:00 app[api]: Build failed -- check your build logs
2018-01-03T15:36:43.131320+00:00 app[api]: Release v3 created by user arunnediyasala@gmail.com
2018-01-03T15:36:43.131320+00:00 app[api]: Set DISABLE_COLLECTSTATIC config vars by user arunnediyasala@gmail.com
2018-01-03T15:37:03.000000+00:00 app[api]: Build started by user arunnediyasala@gmail.com
2018-01-03T15:38:45.314417+00:00 app[api]: Attach DATABASE (@ref:postgresql-octagonal-98104) by user arunnediyasala@gmail.com
2018-01-03T15:38:45.314417+00:00 app[api]: Release v4 created by user arunnediyasala@gmail.com
2018-01-03T15:38:45.733871+00:00 app[api]: Deploy 03be5e46 by user arunnediyasala@gmail.com
2018-01-03T15:38:45.766514+00:00 app[api]: Scaled to web@1:Free by user arunnediyasala@gmail.com
2018-01-03T15:38:45.733871+00:00 app[api]: Release v5 created by user arunnediyasala@gmail.com
2018-01-03T15:38:51.450419+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-03T15:37:03.000000+00:00 app[api]: Build succeeded
2018-01-03T15:38:54.522449+00:00 heroku[web.1]: State changed from starting to crashed
2018-01-03T15:38:54.377555+00:00 app[web.1]: bash: bin/start-pgbouncer-stunnel: No such file or directory
2018-01-03T15:38:54.525084+00:00 heroku[web.1]: State changed from crashed to starting
2018-01-03T15:38:54.504310+00:00 heroku[web.1]: Process exited with status 127
2018-01-03T15:38:58.877741+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-03T15:39:01.252937+00:00 app[web.1]: bash: bin/start-pgbouncer-stunnel: No such file or directory
2018-01-03T15:39:01.355519+00:00 heroku[web.1]: Process exited with status 127
2018-01-03T15:39:01.375477+00:00 heroku[web.1]: State changed from starting to crashed
2018-01-03T15:42:39.793023+00:00 app[api]: Starting process with command `python manage.py syncdb` by user arunnediyasala@gmail.com
2018-01-03T15:42:44.865917+00:00 heroku[run.3255]: State changed from starting to up
2018-01-03T15:42:44.809782+00:00 heroku[run.3255]: Awaiting client
2018-01-03T15:42:44.851947+00:00 heroku[run.3255]: Starting process with command `python manage.py syncdb`
2018-01-03T15:48:46.910859+00:00 heroku[run.3255]: State changed from up to complete
2018-01-03T15:48:46.903653+00:00 heroku[run.3255]: Process exited with status 1
2018-01-03T15:49:48.016078+00:00 heroku[router]: at=error code=H10 desc="App crashed" method=GET path="/" host=calm-tor-49203.herokuapp.com request_id=fc6b3c98-2e5e-46cc-b8ef-b06595f0a43e fwd="73.246.51.39" dyno= connect= service= status=503 bytes= protocol=https
2018-01-03T15:49:48.100580+00:00 heroku[router]: at=error code=H10 desc="App crashed" method=GET path="/favicon.ico" host=calm-tor-49203.herokuapp.com request_id=a2685a46-14a5-4316-80ed-41b55b4012bd fwd="73.246.51.39" dyno= connect= service= status=503 bytes= protocol=https
2018-01-03T15:49:57.295858+00:00 heroku[router]: at=error code=H10 desc="App crashed" method=GET path="/" host=calm-tor-49203.herokuapp.com request_id=a34c74ed-8204-4398-a5aa-16ea0fd65daf fwd="73.246.51.39" dyno= connect= service= status=503 bytes= protocol=https
2018-01-03T15:49:57.353927+00:00 heroku[router]: at=error code=H10 desc="App crashed" method=GET path="/favicon.ico" host=calm-tor-49203.herokuapp.com request_id=1e328a33-2199-4fa4-8d25-103e466b284a fwd="73.246.51.39" dyno= connect= service= status=503 bytes= protocol=https
2018-01-03T15:49:58.964308+00:00 heroku[router]: at=error code=H10 desc="App crashed" method=GET path="/" host=calm-tor-49203.herokuapp.com request_id=311687db-55e6-4525-bd91-3a4dca0e3a99 fwd="73.246.51.39" dyno= connect= service= status=503 bytes= protocol=https
2018-01-03T15:49:59.048505+00:00 heroku[router]: at=error code=H10 desc="App crashed" method=GET path="/favicon.ico" host=calm-tor-49203.herokuapp.com request_id=212f68d0-26be-414a-b028-a39fd3b5488c fwd="73.246.51.39" dyno= connect= service= status=503 bytes= protocol=https
2018-01-03T15:50:19.267586+00:00 app[api]: Starting process with command `python manage.py syncdb` by user arunnediyasala@gmail.com
2018-01-03T15:50:22.485052+00:00 heroku[run.5499]: Awaiting client
2018-01-03T15:50:22.548690+00:00 heroku[run.5499]: Starting process with command `python manage.py syncdb`
2018-01-03T15:50:22.723674+00:00 heroku[run.5499]: State changed from starting to up
2018-01-03T15:50:26.552659+00:00 heroku[run.5499]: State changed from up to complete
2018-01-03T15:50:26.544774+00:00 heroku[run.5499]: Process exited with status 0
2018-01-03T15:50:31.112502+00:00 heroku[router]: at=error code=H10 desc="App crashed" method=GET path="/" host=calm-tor-49203.herokuapp.com request_id=741da2df-91a5-4261-90e3-433b3bd9d34b fwd="73.246.51.39" dyno= connect= service= status=503 bytes= protocol=https
2018-01-03T15:50:31.171038+00:00 heroku[router]: at=error code=H10 desc="App crashed" method=GET path="/favicon.ico" host=calm-tor-49203.herokuapp.com request_id=63ee005b-617c-453a-8549-63f2754008f5 fwd="73.246.51.39" dyno= connect= service= status=503 bytes= protocol=https
2018-01-03T15:50:31.820780+00:00 heroku[router]: at=error code=H10 desc="App crashed" method=GET path="/favicon.ico" host=calm-tor-49203.herokuapp.com request_id=6f8aaf81-a0e3-4351-812c-b8401ff4fdc6 fwd="73.246.51.39" dyno= connect= service= status=503 bytes= protocol=https
2018-01-03T15:50:31.737717+00:00 heroku[router]: at=error code=H10 desc="App crashed" method=GET path="/" host=calm-tor-49203.herokuapp.com request_id=cfb98cf2-9d13-46f8-8405-3e60285617b5 fwd="73.246.51.39" dyno= connect= service= status=503 bytes= protocol=https
2018-01-03T15:50:32.183815+00:00 heroku[router]: at=error code=H10 desc="App crashed" method=GET path="/" host=calm-tor-49203.herokuapp.com request_id=4370c8b8-2302-4a97-b5bc-3c030e958645 fwd="73.246.51.39" dyno= connect= service= status=503 bytes= protocol=https
2018-01-03T15:50:32.740920+00:00 heroku[router]: at=error code=H10 desc="App crashed" method=GET path="/favicon.ico" host=calm-tor-49203.herokuapp.com request_id=d7bd707a-3387-4d01-a289-db9d2b044912 fwd="73.246.51.39" dyno= connect= service= status=503 bytes= protocol=https
2018-01-03T15:50:32.767524+00:00 heroku[router]: at=error code=H10 desc="App crashed" method=GET path="/" host=calm-tor-49203.herokuapp.com request_id=9f020202-49d4-4b2d-a740-59f84c6144dc fwd="73.246.51.39" dyno= connect= service= status=503 bytes= protocol=https
2018-01-03T15:50:32.417409+00:00 heroku[router]: at=error code=H10 desc="App crashed" method=GET path="/" host=calm-tor-49203.herokuapp.com request_id=772d1ee1-aaf2-4a52-bcb0-43a04b571dc6 fwd="73.246.51.39" dyno= connect= service= status=503 bytes= protocol=https
2018-01-03T15:50:32.685784+00:00 heroku[router]: at=error code=H10 desc="App crashed" method=GET path="/" host=calm-tor-49203.herokuapp.com request_id=c87f1939-0c7e-4366-9428-27f1869f4b39 fwd="73.246.51.39" dyno= connect= service= status=503 bytes= protocol=https
2018-01-03T15:50:32.411604+00:00 heroku[router]: at=error code=H10 desc="App crashed" method=GET path="/favicon.ico" host=calm-tor-49203.herokuapp.com request_id=b1bd0a3a-3ef4-4c48-bb1f-0bc54626a45c fwd="73.246.51.39" dyno= connect= service= status=503 bytes= protocol=https
2018-01-03T15:50:32.525278+00:00 heroku[router]: at=error code=H10 desc="App crashed" method=GET path="/favicon.ico" host=calm-tor-49203.herokuapp.com request_id=1fcbef18-445a-4d3a-b16d-ae1f0fac67d3 fwd="73.246.51.39" dyno= connect= service= status=503 bytes= protocol=https
2018-01-03T15:50:33.076639+00:00 heroku[router]: at=error code=H10 desc="App crashed" method=GET path="/" host=calm-tor-49203.herokuapp.com request_id=9a275290-a26b-4a62-b21c-3da507c43424 fwd="73.246.51.39" dyno= connect= service= status=503 bytes= protocol=https
2018-01-03T15:50:33.129474+00:00 heroku[router]: at=error code=H10 desc="App crashed" method=GET path="/favicon.ico" host=calm-tor-49203.herokuapp.com request_id=ca3b4b1e-efe3-4840-9b38-61a60fdd12f7 fwd="73.246.51.39" dyno= connect= service= status=503 bytes= protocol=https
2018-01-03T15:50:32.852782+00:00 heroku[router]: at=error code=H10 desc="App crashed" method=GET path="/favicon.ico" host=calm-tor-49203.herokuapp.com request_id=dab5981b-7d3a-4660-aa67-84018a95d876 fwd="73.246.51.39" dyno= connect= service= status=503 bytes= protocol=https
mikewadsten commented 6 years ago

You need to add the buildpacks, as described in the README: https://github.com/digidotcom/xbeewificloudkit#heroku-setup

Be sure to replace heroku with heroku -a calm-tor-49203 on each heroku command, e.g. heroku buildpacks:add hhttps://github.com/heroku/heroku-buildpack-pgbouncer.git becomes heroku -a calm-tor-49203 buildpacks:add hhttps://github.com/heroku/heroku-buildpack-pgbouncer.git

When you follow the steps in that section, before git push heroku2 master, run heroku -a calm-tor-49203 repo:reset.

arunnediyasala commented 6 years ago

I am not used heroku create But I started the following command ` heroku -a calm-tor-49203 buildpacks:add hhttps://github.c om/heroku/heroku-buildpack-pgbouncer.git ▸ heroku-cli: update available from 6.14.43-73d5876 to 6.15.2-a21a411 ▸ -a is not a heroku command. ▸ Perhaps you meant repo:clone ▸ Run heroku help for a list of available topics.

mikewadsten commented 6 years ago

Ah, I think the -a argument has to go after the command. So heroku buildpacks:add -a calm-tor-49203 ...

Also in that command, there's a typo that I thought we'd fixed but apparently not. It says hhttps:// but that should be https://.

arunnediyasala commented 6 years ago

Again

 heroku buildpacks:add -a calm-tor-49203 buildpacks:add ht
tps://github.com/heroku/heroku-buildpack-pgbouncer.git
 ▸    heroku-cli: update available from 6.14.43-73d5876 to 6.15.2-a21a411
 ▸    Unexpected argument
 ▸    https://github.com/heroku/heroku-buildpack-pgbouncer.git
mikewadsten commented 6 years ago

You have buildpacks:add in there twice. Should be:

heroku buildpacks:add -a calm-tor-49203 https://github.com/heroku/heroku-buildpack-pgbouncer.git
arunnediyasala commented 6 years ago

heroku buildpacks:add -a calm-tor-49203/nodejs ▸ heroku-cli: update available from 6.14.43-73d5876 to 6.15.2-a21a411 ▸ Error: Missing required argument url

mikewadsten commented 6 years ago

These are the commands you should run:

$ heroku buildpacks:add -a calm-tor-49203 https://github.com/heroku/heroku-buildpack-pgbouncer.git
$ heroku buildpacks:add -a calm-tor-49203 heroku/nodejs
$ heroku buildpacks:add -a calm-tor-49203 heroku/python
$ heroku addons:create -a calm-tor-49203 heroku-postgresql
$ git push heroku2 master
$ heroku run -a calm-tor-49203 python manage.py syncdb
mikewadsten commented 6 years ago

Try resetting the app and trying again:

heroku repo:reset -a calm-tor-49203
git push heroku2 master
arunnediyasala commented 6 years ago

Same old page

https://calm-tor-49203.herokuapp.com/

arunnediyasala commented 6 years ago

Here i the output of log file

heroku run -a calm-tor-49203 python manage.py syncdb
 ▸    heroku-cli: update available from 6.14.43-73d5876 to 6.15.2-a21a411
Running python manage.py syncdb on ⬢ calm-tor-49203... up, run.5161 (Free)
Creating tables ...
Installing custom SQL ...
Installing indexes ...
Installed 0 object(s) from 0 fixture(s)
arun@arun-ThinkCentre-M91p-Invalid-entry-length-16-Fixed-up-to-11:~/Downloads/xbeewificloudkit-master$ heroku logs -n 100 -a calm-tor-49203
 ▸    heroku-cli: update available from 6.14.43-73d5876 to 6.15.2-a21a411
2018-01-03T16:32:18.649707+00:00 heroku[router]: at=info method=GET path="/static/vendor/select2/select2.css" host=calm-tor-49203.herokuapp.com request_id=e811e948-99f6-4baf-9931-f05b3464e9f5 fwd="73.246.51.39" dyno=web.1 connect=0ms service=2ms status=404 bytes=1578 protocol=https
2018-01-03T16:32:18.691059+00:00 heroku[router]: at=info method=GET path="/static/assets/xbee-wifi-cloud-kit.js" host=calm-tor-49203.herokuapp.com request_id=024e1db7-bbbd-4006-aa4b-9b6ef2f6abae fwd="73.246.51.39" dyno=web.1 connect=0ms service=2ms status=404 bytes=1734 protocol=https
2018-01-03T16:32:17.544127+00:00 heroku[router]: at=info method=GET path="/static/vendor/jquery-ui/themes/base/jquery.ui.slider.css" host=calm-tor-49203.herokuapp.com request_id=7eb06525-4a6d-44a3-82f0-1f1a4a4bb421 fwd="73.246.51.39" dyno=web.1 connect=0ms service=1ms status=404 bytes=954 protocol=https
2018-01-03T16:32:18.400451+00:00 heroku[router]: at=info method=GET path="/static/vendor/jquery-ui/themes/start/jquery.ui.theme.css" host=calm-tor-49203.herokuapp.com request_id=8107a8c8-0124-4f83-a536-4f4ff82354b4 fwd="73.246.51.39" dyno=web.1 connect=0ms service=5ms status=404 bytes=1474 protocol=https
2018-01-03T16:32:18.037849+00:00 heroku[router]: at=info method=GET path="/static/vendor/jquery-ui/themes/base/jquery.ui.slider.css" host=calm-tor-49203.herokuapp.com request_id=80a54f3f-f98e-49ec-83d3-ab3d377fad9d fwd="73.246.51.39" dyno=web.1 connect=0ms service=2ms status=404 bytes=1214 protocol=https
2018-01-03T16:32:18.893821+00:00 heroku[router]: at=info method=GET path="/static/vendor/jquery-ui/themes/start/jquery.ui.theme.css" host=calm-tor-49203.herokuapp.com request_id=a97fe69b-50e4-40cd-a8c4-a40ae625ec69 fwd="73.246.51.39" dyno=web.1 connect=1ms service=3ms status=404 bytes=1864 protocol=https
2018-01-03T16:32:18.894832+00:00 heroku[router]: at=info method=GET path="/static/vendor/jquery-ui/themes/base/jquery.ui.slider.css" host=calm-tor-49203.herokuapp.com request_id=2e304cf3-ca1d-4290-94fe-2f4a33b3faa8 fwd="73.246.51.39" dyno=web.1 connect=1ms service=4ms status=404 bytes=1890 protocol=https
2018-01-03T16:32:18.892130+00:00 heroku[router]: at=info method=GET path="/static/vendor/toastr/toastr.min.css" host=calm-tor-49203.herokuapp.com request_id=d676b6fb-2899-4804-b94b-62d933246721 fwd="73.246.51.39" dyno=web.1 connect=0ms service=1ms status=404 bytes=1786 protocol=https
2018-01-03T16:32:18.441999+00:00 heroku[router]: at=info method=GET path="/static/assets/Logo_XBee_sml.png" host=calm-tor-49203.herokuapp.com request_id=3e7ab81f-d689-4dd0-8ba7-5c2e7fa5a948 fwd="73.246.51.39" dyno=web.1 connect=0ms service=2ms status=404 bytes=1552 protocol=https
2018-01-03T16:32:18.650702+00:00 heroku[router]: at=info method=GET path="/static/vendor/jquery-ui/themes/base/jquery.ui.progressbar.css" host=calm-tor-49203.herokuapp.com request_id=98c20481-ab1a-43a6-9385-1fa85a542306 fwd="73.246.51.39" dyno=web.1 connect=1ms service=3ms status=404 bytes=1604 protocol=https
2018-01-03T16:32:16.823129+00:00 app[web.1]: [Errno 2] No such file or directory: 'staticfiles/vendor/jquery-ui/themes/base/jquery.ui.progressbar.css'
2018-01-03T16:32:16.823835+00:00 app[web.1]: [Errno 2] No such file or directory: 'staticfiles/vendor/jquery-ui/themes/base/jquery.ui.slider.css'
2018-01-03T16:32:16.828986+00:00 app[web.1]: [Errno 2] No such file or directory: 'staticfiles/vendor/toastr/toastr.min.css'
2018-01-03T16:32:16.830911+00:00 app[web.1]: [Errno 2] No such file or directory: 'staticfiles/vendor/jquery-ui/themes/start/jquery.ui.theme.css'
2018-01-03T16:32:16.831811+00:00 app[web.1]: [Errno 2] No such file or directory: 'staticfiles/assets/xbee-wifi-cloud-kit.css'
2018-01-03T16:32:16.862419+00:00 app[web.1]: [Errno 2] No such file or directory: 'staticfiles/assets/xbee-wifi-cloud-kit.js'
2018-01-03T16:32:16.872962+00:00 app[web.1]: [Errno 2] No such file or directory: 'staticfiles/assets/Logo_XBee_sml.png'
2018-01-03T16:32:16.829710+00:00 app[web.1]: [Errno 2] No such file or directory: 'staticfiles/vendor/select2/select2.css'
2018-01-03T16:32:18.040182+00:00 heroku[router]: at=info method=GET path="/static/vendor/jquery-ui/themes/base/jquery.ui.progressbar.css" host=calm-tor-49203.herokuapp.com request_id=dbe5f727-6cbb-4565-af8b-5aafc254b17e fwd="73.246.51.39" dyno=web.1 connect=0ms service=5ms status=404 bytes=1266 protocol=https
2018-01-03T16:32:18.653666+00:00 heroku[router]: at=info method=GET path="/static/vendor/jquery-ui/themes/start/jquery.ui.theme.css" host=calm-tor-49203.herokuapp.com request_id=c6af6dcf-1edf-4b07-9004-2e70a17a0355 fwd="73.246.51.39" dyno=web.1 connect=0ms service=5ms status=404 bytes=1682 protocol=https
2018-01-03T16:32:17.544709+00:00 heroku[router]: at=info method=GET path="/static/vendor/toastr/toastr.min.css" host=calm-tor-49203.herokuapp.com request_id=7e2f0702-dee9-4a25-b186-8ad11744bd62 fwd="73.246.51.39" dyno=web.1 connect=0ms service=2ms status=404 bytes=980 protocol=https
2018-01-03T16:32:17.543214+00:00 app[web.1]: [Errno 2] No such file or directory: 'staticfiles/vendor/jquery-ui/themes/base/jquery.ui.slider.css'
2018-01-03T16:32:17.544242+00:00 app[web.1]: [Errno 2] No such file or directory: 'staticfiles/vendor/toastr/toastr.min.css'
2018-01-03T16:32:17.546173+00:00 app[web.1]: [Errno 2] No such file or directory: 'staticfiles/assets/xbee-wifi-cloud-kit.css'
2018-01-03T16:32:17.545104+00:00 app[web.1]: [Errno 2] No such file or directory: 'staticfiles/vendor/jquery-ui/themes/start/jquery.ui.theme.css'
2018-01-03T16:32:17.547148+00:00 app[web.1]: [Errno 2] No such file or directory: 'staticfiles/vendor/select2/select2.css'
2018-01-03T16:32:17.548123+00:00 app[web.1]: [Errno 2] No such file or directory: 'staticfiles/vendor/jquery-ui/themes/base/jquery.ui.progressbar.css'
2018-01-03T16:32:17.583977+00:00 app[web.1]: [Errno 2] No such file or directory: 'staticfiles/assets/xbee-wifi-cloud-kit.js'
2018-01-03T16:32:17.590063+00:00 app[web.1]: [Errno 2] No such file or directory: 'staticfiles/assets/Logo_XBee_sml.png'
2018-01-03T16:32:17.811174+00:00 heroku[router]: at=info method=GET path="/static/assets/xbee-wifi-cloud-kit.css" host=calm-tor-49203.herokuapp.com request_id=0cc72ab3-92ad-4fc5-8259-cf1c8c406691 fwd="73.246.51.39" dyno=web.1 connect=0ms service=1ms status=404 bytes=1162 protocol=https
2018-01-03T16:32:17.851773+00:00 heroku[router]: at=info method=GET path="/static/assets/xbee-wifi-cloud-kit.js" host=calm-tor-49203.herokuapp.com request_id=40fa092f-53c8-4c19-9d9c-6ef8de2c3f67 fwd="73.246.51.39" dyno=web.1 connect=0ms service=1ms status=404 bytes=1188 protocol=https
2018-01-03T16:32:18.396963+00:00 heroku[router]: at=info method=GET path="/static/vendor/toastr/toastr.min.css" host=calm-tor-49203.herokuapp.com request_id=0059fc9a-2863-4c3a-92d2-ba540ec5f664 fwd="73.246.51.39" dyno=web.1 connect=0ms service=2ms status=404 bytes=1370 protocol=https
2018-01-03T16:32:17.548409+00:00 heroku[router]: at=info method=GET path="/static/vendor/jquery-ui/themes/base/jquery.ui.progressbar.css" host=calm-tor-49203.herokuapp.com request_id=f6b2d09e-f260-453a-961c-50b27383c919 fwd="73.246.51.39" dyno=web.1 connect=0ms service=5ms status=404 bytes=1084 protocol=https
2018-01-03T16:32:18.398714+00:00 heroku[router]: at=info method=GET path="/static/vendor/select2/select2.css" host=calm-tor-49203.herokuapp.com request_id=ddf6be73-bdd1-4dbc-a9ab-a9e7bf497dca fwd="73.246.51.39" dyno=web.1 connect=0ms service=4ms status=404 bytes=1422 protocol=https
2018-01-03T16:32:18.652774+00:00 heroku[router]: at=info method=GET path="/static/vendor/toastr/toastr.min.css" host=calm-tor-49203.herokuapp.com request_id=60ca3371-2347-45b6-b396-3952083bf3e7 fwd="73.246.51.39" dyno=web.1 connect=0ms service=4ms status=404 bytes=1656 protocol=https
2018-01-03T16:32:18.649257+00:00 app[web.1]: [Errno 2] No such file or directory: 'staticfiles/vendor/select2/select2.css'
2018-01-03T16:32:18.650563+00:00 app[web.1]: [Errno 2] No such file or directory: 'staticfiles/vendor/jquery-ui/themes/base/jquery.ui.progressbar.css'
2018-01-03T16:32:18.651362+00:00 app[web.1]: [Errno 2] No such file or directory: 'staticfiles/vendor/jquery-ui/themes/base/jquery.ui.slider.css'
2018-01-03T16:32:18.652099+00:00 app[web.1]: [Errno 2] No such file or directory: 'staticfiles/vendor/toastr/toastr.min.css'
2018-01-03T16:32:18.652924+00:00 app[web.1]: [Errno 2] No such file or directory: 'staticfiles/vendor/jquery-ui/themes/start/jquery.ui.theme.css'
2018-01-03T16:32:18.654903+00:00 app[web.1]: [Errno 2] No such file or directory: 'staticfiles/assets/xbee-wifi-cloud-kit.css'
2018-01-03T16:32:18.690555+00:00 app[web.1]: [Errno 2] No such file or directory: 'staticfiles/assets/xbee-wifi-cloud-kit.js'
2018-01-03T16:32:18.694499+00:00 app[web.1]: [Errno 2] No such file or directory: 'staticfiles/assets/Logo_XBee_sml.png'
2018-01-03T16:32:18.775850+00:00 app[web.1]: 2018-01-03 16:32:18.775 31 LOG Stats: 0 req/s, in 0 b/s, out 0 b/s,query 0 us
2018-01-03T16:32:18.891237+00:00 app[web.1]: [Errno 2] No such file or directory: 'staticfiles/vendor/toastr/toastr.min.css'
2018-01-03T16:32:18.892066+00:00 app[web.1]: [Errno 2] No such file or directory: 'staticfiles/vendor/jquery-ui/themes/base/jquery.ui.progressbar.css'
2018-01-03T16:32:18.892713+00:00 app[web.1]: [Errno 2] No such file or directory: 'staticfiles/assets/xbee-wifi-cloud-kit.css'
2018-01-03T16:32:18.893372+00:00 app[web.1]: [Errno 2] No such file or directory: 'staticfiles/vendor/jquery-ui/themes/start/jquery.ui.theme.css'
2018-01-03T16:32:18.894165+00:00 app[web.1]: [Errno 2] No such file or directory: 'staticfiles/vendor/jquery-ui/themes/base/jquery.ui.slider.css'
2018-01-03T16:32:18.895369+00:00 app[web.1]: [Errno 2] No such file or directory: 'staticfiles/vendor/select2/select2.css'
2018-01-03T16:32:16.831052+00:00 heroku[router]: at=info method=GET path="/static/vendor/jquery-ui/themes/start/jquery.ui.theme.css" host=calm-tor-49203.herokuapp.com request_id=b4ec326b-4dc7-4a9f-b76c-24ed893ec5ee fwd="73.246.51.39" dyno=web.1 connect=0ms service=2ms status=404 bytes=434 protocol=https
2018-01-03T16:32:18.045782+00:00 heroku[router]: at=info method=GET path="/static/vendor/select2/select2.css" host=calm-tor-49203.herokuapp.com request_id=0fb45e5c-8ab7-4415-9a01-372cad414709 fwd="73.246.51.39" dyno=web.1 connect=0ms service=3ms status=404 bytes=1292 protocol=https
2018-01-03T16:32:18.338107+00:00 heroku[router]: at=info method=GET path="/" host=calm-tor-49203.herokuapp.com request_id=ea535b55-a395-498b-9bf8-4878f25ca293 fwd="73.246.51.39" dyno=web.1 connect=0ms service=4ms status=200 bytes=4091 protocol=https
2018-01-03T16:32:18.397599+00:00 heroku[router]: at=info method=GET path="/static/vendor/jquery-ui/themes/base/jquery.ui.progressbar.css" host=calm-tor-49203.herokuapp.com request_id=75ae8c1e-9937-4b12-9096-b83a1e24799b fwd="73.246.51.39" dyno=web.1 connect=0ms service=3ms status=404 bytes=1396 protocol=https
2018-01-03T16:32:18.655531+00:00 heroku[router]: at=info method=GET path="/static/assets/xbee-wifi-cloud-kit.css" host=calm-tor-49203.herokuapp.com request_id=f9db3ed8-2a42-4b1e-be14-9dd043598a82 fwd="73.246.51.39" dyno=web.1 connect=0ms service=1ms status=404 bytes=1708 protocol=https
2018-01-03T16:32:54.794020+00:00 heroku[router]: at=info method=GET path="/static/vendor/jquery-ui/themes/base/jquery.ui.slider.css" host=calm-tor-49203.herokuapp.com request_id=92b58562-4ea6-4ad8-9aab-ca662eb4765b fwd="73.246.51.39" dyno=web.1 connect=0ms service=5ms status=404 bytes=2072 protocol=https
2018-01-03T16:32:54.780309+00:00 app[web.1]: [Errno 2] No such file or directory: 'staticfiles/vendor/jquery-ui/themes/base/jquery.ui.progressbar.css'
2018-01-03T16:32:54.791486+00:00 app[web.1]: [Errno 2] No such file or directory: 'staticfiles/assets/xbee-wifi-cloud-kit.css'
2018-01-03T16:32:54.792215+00:00 app[web.1]: [Errno 2] No such file or directory: 'staticfiles/vendor/select2/select2.css'
2018-01-03T16:32:54.793022+00:00 app[web.1]: [Errno 2] No such file or directory: 'staticfiles/vendor/jquery-ui/themes/base/jquery.ui.slider.css'
2018-01-03T16:32:54.793803+00:00 app[web.1]: [Errno 2] No such file or directory: 'staticfiles/vendor/toastr/toastr.min.css'
2018-01-03T16:32:54.794884+00:00 app[web.1]: [Errno 2] No such file or directory: 'staticfiles/vendor/jquery-ui/themes/start/jquery.ui.theme.css'
2018-01-03T16:32:54.830453+00:00 app[web.1]: [Errno 2] No such file or directory: 'staticfiles/assets/xbee-wifi-cloud-kit.js'
2018-01-03T16:32:54.842017+00:00 app[web.1]: [Errno 2] No such file or directory: 'staticfiles/assets/Logo_XBee_sml.png'
2018-01-03T16:32:54.795893+00:00 heroku[router]: at=info method=GET path="/static/vendor/jquery-ui/themes/start/jquery.ui.theme.css" host=calm-tor-49203.herokuapp.com request_id=7f6aa069-e403-4f52-a0ce-993029b1ef2c fwd="73.246.51.39" dyno=web.1 connect=0ms service=7ms status=404 bytes=2124 protocol=https
2018-01-03T16:32:53.504771+00:00 heroku[router]: at=info method=GET path="/" host=calm-tor-49203.herokuapp.com request_id=5c808bcf-f80f-4577-b598-bdfc8eeace92 fwd="77.67.54.3" dyno=web.1 connect=0ms service=4ms status=200 bytes=4091 protocol=https
2018-01-03T16:32:54.781521+00:00 heroku[router]: at=info method=GET path="/static/vendor/jquery-ui/themes/base/jquery.ui.progressbar.css" host=calm-tor-49203.herokuapp.com request_id=2948a62c-7a4d-4d56-8a78-c2eca75af19e fwd="73.246.51.39" dyno=web.1 connect=0ms service=2ms status=404 bytes=1994 protocol=https
2018-01-03T16:32:54.792596+00:00 heroku[router]: at=info method=GET path="/static/vendor/select2/select2.css" host=calm-tor-49203.herokuapp.com request_id=42536357-d469-4ee0-8c34-f716f686ef5c fwd="73.246.51.39" dyno=web.1 connect=0ms service=4ms status=404 bytes=2046 protocol=https
2018-01-03T16:32:54.842469+00:00 heroku[router]: at=info method=GET path="/static/assets/Logo_XBee_sml.png" host=calm-tor-49203.herokuapp.com request_id=b03fad53-d702-4d2f-a2e7-e299ede4375b fwd="73.246.51.39" dyno=web.1 connect=0ms service=1ms status=404 bytes=2176 protocol=https
2018-01-03T16:32:54.793990+00:00 heroku[router]: at=info method=GET path="/static/vendor/toastr/toastr.min.css" host=calm-tor-49203.herokuapp.com request_id=0adc7832-ce03-4a4b-bb3b-f4c60408149d fwd="73.246.51.39" dyno=web.1 connect=0ms service=6ms status=404 bytes=2098 protocol=https
2018-01-03T16:32:54.043058+00:00 heroku[router]: at=info method=GET path="/" host=calm-tor-49203.herokuapp.com request_id=1391a18e-050d-4c74-bd73-496701acaf29 fwd="173.205.33.30" dyno=web.1 connect=0ms service=3ms status=200 bytes=4091 protocol=https
2018-01-03T16:32:54.131112+00:00 heroku[router]: at=info method=GET path="/" host=calm-tor-49203.herokuapp.com request_id=fc3db8eb-8b2a-48b7-a590-a798e00ff006 fwd="77.67.54.15" dyno=web.1 connect=0ms service=4ms status=200 bytes=4091 protocol=https
2018-01-03T16:32:54.682005+00:00 heroku[router]: at=info method=GET path="/" host=calm-tor-49203.herokuapp.com request_id=7b0a10b8-dcec-4e54-8924-d4cacce776e3 fwd="73.246.51.39" dyno=web.1 connect=0ms service=5ms status=200 bytes=4091 protocol=https
2018-01-03T16:32:54.831400+00:00 heroku[router]: at=info method=GET path="/static/assets/xbee-wifi-cloud-kit.js" host=calm-tor-49203.herokuapp.com request_id=938f3a46-c1f1-41e5-bd32-fde36297e858 fwd="73.246.51.39" dyno=web.1 connect=0ms service=5ms status=404 bytes=2150 protocol=https
2018-01-03T16:32:54.507968+00:00 heroku[router]: at=info method=GET path="/" host=calm-tor-49203.herokuapp.com request_id=c7a7f469-b636-4ee4-8238-f7e2ad558492 fwd="173.205.33.23" dyno=web.1 connect=1ms service=6ms status=200 bytes=4091 protocol=https
2018-01-03T16:32:53.711064+00:00 heroku[router]: at=info method=GET path="/" host=calm-tor-49203.herokuapp.com request_id=19d9c56d-a37e-4600-a016-a8545eb4b052 fwd="173.205.33.31" dyno=web.1 connect=1ms service=4ms status=200 bytes=4091 protocol=https
2018-01-03T16:32:54.436619+00:00 heroku[router]: at=info method=GET path="/" host=calm-tor-49203.herokuapp.com request_id=d13b2cee-9df4-4873-9686-621c6e6877d5 fwd="4.53.111.69" dyno=web.1 connect=0ms service=3ms status=200 bytes=4091 protocol=https
2018-01-03T16:32:56.454182+00:00 heroku[router]: at=info method=GET path="/" host=calm-tor-49203.herokuapp.com request_id=b0340597-1288-4039-895e-82efe72c5b54 fwd="4.53.111.77" dyno=web.1 connect=1ms service=5ms status=200 bytes=4091 protocol=https
2018-01-03T16:32:54.792264+00:00 heroku[router]: at=info method=GET path="/static/assets/xbee-wifi-cloud-kit.css" host=calm-tor-49203.herokuapp.com request_id=4e84b97e-349f-4f8b-82c5-7fce083fd42c fwd="73.246.51.39" dyno=web.1 connect=0ms service=4ms status=404 bytes=2020 protocol=https
2018-01-03T16:32:59.082045+00:00 heroku[router]: at=info method=GET path="/" host=calm-tor-49203.herokuapp.com request_id=1c3c9a1e-9923-43fb-a060-4c6bd42baca1 fwd="77.67.54.13" dyno=web.1 connect=1ms service=4ms status=200 bytes=4091 protocol=https
2018-01-03T16:33:17.799958+00:00 heroku[router]: at=info method=GET path="/" host=calm-tor-49203.herokuapp.com request_id=90ca7da8-8f39-402f-99cc-886983dbafd5 fwd="66.77.174.123" dyno=web.1 connect=5ms service=4ms status=200 bytes=4091 protocol=https
2018-01-03T16:33:17.911264+00:00 heroku[router]: at=info method=GET path="/static/vendor/jquery-ui/themes/base/jquery.ui.slider.css" host=calm-tor-49203.herokuapp.com request_id=38cfbf75-82f7-4e2d-80e9-a88b14c4222e fwd="66.77.174.123" dyno=web.1 connect=0ms service=2ms status=404 bytes=2228 protocol=https
2018-01-03T16:33:17.870801+00:00 app[web.1]: [Errno 2] No such file or directory: 'staticfiles/vendor/jquery-ui/themes/base/jquery.ui.progressbar.css'
2018-01-03T16:33:17.912093+00:00 app[web.1]: [Errno 2] No such file or directory: 'staticfiles/vendor/jquery-ui/themes/base/jquery.ui.slider.css'
2018-01-03T16:33:17.943055+00:00 app[web.1]: [Errno 2] No such file or directory: 'staticfiles/vendor/jquery-ui/themes/start/jquery.ui.theme.css'
2018-01-03T16:33:17.944522+00:00 app[web.1]: [Errno 2] No such file or directory: 'staticfiles/vendor/select2/select2.css'
2018-01-03T16:33:17.945584+00:00 app[web.1]: [Errno 2] No such file or directory: 'staticfiles/vendor/toastr/toastr.min.css'
2018-01-03T16:33:17.946594+00:00 app[web.1]: [Errno 2] No such file or directory: 'staticfiles/assets/xbee-wifi-cloud-kit.css'
2018-01-03T16:33:18.061395+00:00 app[web.1]: [Errno 2] No such file or directory: 'staticfiles/assets/Logo_XBee_sml.png'
2018-01-03T16:33:17.989221+00:00 app[web.1]: [Errno 2] No such file or directory: 'staticfiles/assets/xbee-wifi-cloud-kit.js'
2018-01-03T16:33:17.952798+00:00 heroku[router]: at=info method=GET path="/static/assets/xbee-wifi-cloud-kit.css" host=calm-tor-49203.herokuapp.com request_id=9c0235e3-a2da-43cb-971e-ea69d6837a8b fwd="66.77.174.123" dyno=web.1 connect=0ms service=10ms status=404 bytes=2332 protocol=https
2018-01-03T16:33:18.130155+00:00 heroku[router]: at=info method=GET path="/favicon.ico" host=calm-tor-49203.herokuapp.com request_id=67f933b0-69d3-4dbb-8db8-f553e938cb6f fwd="66.77.174.123" dyno=web.1 connect=0ms service=4ms status=404 bytes=227 protocol=https
2018-01-03T16:33:18.776744+00:00 app[web.1]: 2018-01-03 16:33:18.776 31 LOG Stats: 0 req/s, in 0 b/s, out 0 b/s,query 0 us
2018-01-03T16:33:18.061969+00:00 heroku[router]: at=info method=GET path="/static/assets/Logo_XBee_sml.png" host=calm-tor-49203.herokuapp.com request_id=1b389372-9fc4-4275-8cbd-c942af3fe3bf fwd="66.77.174.123" dyno=web.1 connect=0ms service=2ms status=404 bytes=2384 protocol=https
2018-01-03T16:33:17.945329+00:00 heroku[router]: at=info method=GET path="/static/vendor/select2/select2.css" host=calm-tor-49203.herokuapp.com request_id=4dc37c59-d716-4ab6-95ec-609e53fbae7e fwd="66.77.174.123" dyno=web.1 connect=0ms service=3ms status=404 bytes=2280 protocol=https
2018-01-03T16:33:17.946379+00:00 heroku[router]: at=info method=GET path="/static/vendor/toastr/toastr.min.css" host=calm-tor-49203.herokuapp.com request_id=1ae83bd9-f04d-460f-92ad-69b306597c04 fwd="66.77.174.123" dyno=web.1 connect=0ms service=4ms status=404 bytes=2306 protocol=https
2018-01-03T16:33:17.990556+00:00 heroku[router]: at=info method=GET path="/static/assets/xbee-wifi-cloud-kit.js" host=calm-tor-49203.herokuapp.com request_id=418eab87-f3ad-4648-be9f-fcac7170033d fwd="66.77.174.123" dyno=web.1 connect=0ms service=3ms status=404 bytes=2358 protocol=https
2018-01-03T16:33:17.943435+00:00 heroku[router]: at=info method=GET path="/static/vendor/jquery-ui/themes/start/jquery.ui.theme.css" host=calm-tor-49203.herokuapp.com request_id=451704d7-29e4-4f74-a7a1-0b4773199e93 fwd="66.77.174.123" dyno=web.1 connect=0ms service=2ms status=404 bytes=2254 protocol=https
2018-01-03T16:33:17.870049+00:00 heroku[router]: at=info method=GET path="/static/vendor/jquery-ui/themes/base/jquery.ui.progressbar.css" host=calm-tor-49203.herokuapp.com request_id=ac491b73-4688-4b16-af6b-edba4c5c950c fwd="66.77.174.123" dyno=web.1 connect=0ms service=2ms status=404 bytes=2202 protocol=https
2018-01-03T16:34:18.778365+00:00 app[web.1]: 2018-01-03 16:34:18.778 31 LOG Stats: 0 req/s, in 0 b/s, out 0 b/s,query 0 us
2018-01-03T16:35:18.778844+00:00 app[web.1]: 2018-01-03 16:35:18.778 31 LOG Stats: 0 req/s, in 0 b/s, out 0 b/s,query 0 us
arunnediyasala commented 6 years ago

Could you please tell me about the status of issue #8 @mikewadsten . Or this issue occurred because of my system configuration???.

arunnediyasala commented 6 years ago

Hi @mikewadsten is there is any update for this issue...

mikewadsten commented 6 years ago

Hi @arunnediyasala , sorry for the delay in replying.

We have this issue written up internally on our list of things to do, but with our other priorities, I don't foresee us tackling this in the immediate future.

As you can see from my previous comments, I have tried all obvious easy fixes, but clearly this problem will require more investigation. If I had to guess, it probably has something to do with a platform change made by Heroku sometime in the last few years. We have a difficult time keeping on top of Heroku's changes and updates (new default stack, changes to the default Python version, etc).

All of our code for this application is open-source and present in this repository, so feel free to continue debugging the issue on your own. If you find a solution, please let us know :smile:

In the meantime, if you don't need to be able to deploy your own instance of the application, you can use the Digi-hosted instance at https://xbeewifi.herokuapp.com.

arunnediyasala commented 6 years ago

Thanks