Page 1 of 1

Dashticz: new location

Posted: Thursday 01 August 2019 23:09
by Lokonli
A few weeks ago I decided to create the Dashticzv3/dashticz_v3 repository and to use that for further developments on Dashticz.

That was not an ideal situation, because https://github.com/Dashticz also still existed.

Last weeks we discussed the situation with @robgeerts and @alitrix, and we decided to move Dashticz v3 back home into a new repository:

https://github.com/Dashticz/dashticz

All Dashticz v3 content has been shifted to this new location.

Also the documentation location has been updated:
https://dashticz.readthedocs.org

So future releases will be published on https://github.com/Dashticz/dashticz
The latest beta is 3.0.4:
https://github.com/Dashticz/dashticz/re ... 3.0.4-beta

Please use this Dashticz repository if you want to clone, create pull requests, or Issues.

Re: Dashticz: new location

Posted: Friday 02 August 2019 0:14
by felix63
:D

Re: Dashticz: new location

Posted: Friday 02 August 2019 9:52
by EdwinK
Still when I clone this: https://github.com/Dashticz/dashticz.git, I keep getting the master version 3.0 instead of the beta. I did select the beta branch.

edit: Also stuck on the 'loading Dashticz v3' screen now :(

Re: Dashticz: new location

Posted: Friday 02 August 2019 12:57
by Lokonli
EdwinK wrote: Friday 02 August 2019 9:52 Still when I clone this: https://github.com/Dashticz/dashticz.git, I keep getting the master version 3.0 instead of the beta. I did select the beta branch.

edit: Also stuck on the 'loading Dashticz v3' screen now :(
How do you clone?
Did you copy your previous CONFIG.js?

Re: Dashticz: new location

Posted: Friday 02 August 2019 17:22
by EdwinK
On the gitub page I change to beta, then copied the link after that I did a sudo git clone https://github.com/Dashticz/dashticz.git dashboard

I always copy the custom folders to an outside location before clone-ing or pulling a newer version.

Re: Dashticz: new location

Posted: Friday 02 August 2019 17:44
by Lokonli
EdwinK wrote: Friday 02 August 2019 17:22 On the gitub page I change to beta, then copied the link after that I did a sudo git clone https://github.com/Dashticz/dashticz.git dashboard

I always copy the custom folders to an outside location before clone-ing or pulling a newer version.
With the git clone command you normally get the default branch. That is master.
It's easy to switch to beta. In the dashticz folder type:

Code: Select all

git checkout beta
or:
You can also clone into the beta branch directly:

Code: Select all

git clone https://github.com/Dashticz/dashticz -b beta

Re: Dashticz: new location

Posted: Friday 02 August 2019 19:00
by EdwinK
Thanks. Good to know.

Now I just need to check why my CUSTOM.js isn't working

edit; This looks to be why

Code: Select all

VM14:1 Failed to load resource: the server responded with a status of 403 (Forbidden)
(anonymous) @ VM14:1

Re: Dashticz: new location

Posted: Friday 02 August 2019 22:01
by Lokonli
EdwinK wrote: Friday 02 August 2019 19:00 Thanks. Good to know.

Now I just need to check why my CUSTOM.js isn't working

edit; This looks to be why

Code: Select all

VM14:1 Failed to load resource: the server responded with a status of 403 (Forbidden)
(anonymous) @ VM14:1
It might be a file permissions issue.
In Chrome open the developer window (F12) and then go to the network tab. Refresh the dashticz webpage, and then look for the first network request that is giving an error.

You can set the correct permissions as follows:

Code: Select all

chmod -R a+rX /home/pi/dev/dashticz
(change the path for your own situation)

Re: Dashticz: new location

Posted: Friday 02 August 2019 22:10
by EdwinK
This si what I get.
Screen Shot 2019-08-02 at 22.09.59.png
Screen Shot 2019-08-02 at 22.09.59.png (20.69 KiB) Viewed 1339 times
so it would be config.js that is faulty?

edit: guess it was. Now it's gone.

Re: Dashticz: new location

Posted: Friday 02 August 2019 22:52
by Lokonli
How did you fix it?

Sent from my SM-A320FL using Tapatalk


Re: Dashticz: new location

Posted: Saturday 03 August 2019 9:39
by EdwinK
By your instructions to CHMOD the folder.