Dashticz: new location
Moderators: leecollings, htilburgs, robgeerts
-
Lokonli
- Posts: 2292
- Joined: Monday 29 August 2016 22:40
- Target OS: Raspberry Pi / ODroid
- Domoticz version:
- Contact:
Dashticz: new location
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.
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.
- EdwinK
- Posts: 1820
- Joined: Sunday 22 January 2017 21:46
- Target OS: Raspberry Pi / ODroid
- Domoticz version: BETA
- Location: Rhoon
- Contact:
Re: Dashticz: new location
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
edit: Also stuck on the 'loading Dashticz v3' screen now
Running latest BETA on a Pi-3 | Toon® Thermostat (rooted) | Hue | Tuya | IKEA tradfri | Dashticz V3 on Lenovo Huawei Tablet | Conbee
-
Lokonli
- Posts: 2292
- Joined: Monday 29 August 2016 22:40
- Target OS: Raspberry Pi / ODroid
- Domoticz version:
- Contact:
Re: Dashticz: new location
How do you clone?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![]()
Did you copy your previous CONFIG.js?
- EdwinK
- Posts: 1820
- Joined: Sunday 22 January 2017 21:46
- Target OS: Raspberry Pi / ODroid
- Domoticz version: BETA
- Location: Rhoon
- Contact:
Re: Dashticz: new location
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.
I always copy the custom folders to an outside location before clone-ing or pulling a newer version.
Running latest BETA on a Pi-3 | Toon® Thermostat (rooted) | Hue | Tuya | IKEA tradfri | Dashticz V3 on Lenovo Huawei Tablet | Conbee
-
Lokonli
- Posts: 2292
- Joined: Monday 29 August 2016 22:40
- Target OS: Raspberry Pi / ODroid
- Domoticz version:
- Contact:
Re: Dashticz: new location
With the git clone command you normally get the default branch. That is master.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.
It's easy to switch to beta. In the dashticz folder type:
Code: Select all
git checkout beta
You can also clone into the beta branch directly:
Code: Select all
git clone https://github.com/Dashticz/dashticz -b beta
- EdwinK
- Posts: 1820
- Joined: Sunday 22 January 2017 21:46
- Target OS: Raspberry Pi / ODroid
- Domoticz version: BETA
- Location: Rhoon
- Contact:
Re: Dashticz: new location
Thanks. Good to know.
Now I just need to check why my CUSTOM.js isn't working
edit; This looks to be why
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:1Running latest BETA on a Pi-3 | Toon® Thermostat (rooted) | Hue | Tuya | IKEA tradfri | Dashticz V3 on Lenovo Huawei Tablet | Conbee
-
Lokonli
- Posts: 2292
- Joined: Monday 29 August 2016 22:40
- Target OS: Raspberry Pi / ODroid
- Domoticz version:
- Contact:
Re: Dashticz: new location
It might be a file permissions issue.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
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- EdwinK
- Posts: 1820
- Joined: Sunday 22 January 2017 21:46
- Target OS: Raspberry Pi / ODroid
- Domoticz version: BETA
- Location: Rhoon
- Contact:
Re: Dashticz: new location
This si what I get.
so it would be config.js that is faulty?
edit: guess it was. Now it's gone.
so it would be config.js that is faulty?
edit: guess it was. Now it's gone.
Running latest BETA on a Pi-3 | Toon® Thermostat (rooted) | Hue | Tuya | IKEA tradfri | Dashticz V3 on Lenovo Huawei Tablet | Conbee
-
Lokonli
- Posts: 2292
- Joined: Monday 29 August 2016 22:40
- Target OS: Raspberry Pi / ODroid
- Domoticz version:
- Contact:
Re: Dashticz: new location
How did you fix it?
Sent from my SM-A320FL using Tapatalk
Sent from my SM-A320FL using Tapatalk
- EdwinK
- Posts: 1820
- Joined: Sunday 22 January 2017 21:46
- Target OS: Raspberry Pi / ODroid
- Domoticz version: BETA
- Location: Rhoon
- Contact:
Re: Dashticz: new location
By your instructions to CHMOD the folder.
Running latest BETA on a Pi-3 | Toon® Thermostat (rooted) | Hue | Tuya | IKEA tradfri | Dashticz V3 on Lenovo Huawei Tablet | Conbee
Who is online
Users browsing this forum: No registered users and 1 guest