Continuing the discussion from Installing a theme from a private Git repository:
Has there been a regression? I don’t see “in a private repo” checkbox. I tried several sites and even safe-mode.:
Continuing the discussion from Installing a theme from a private Git repository:
Has there been a regression? I don’t see “in a private repo” checkbox. I tried several sites and even safe-mode.:
Since you aren’t the first one. I think the guide needs to be improved.
I think you have overlooked the following
Oh.
Well, shouldn’t it be more obvious?
Make sure to use the clone with SSH link, not the one that starts with
https
.
Oh. I guess not.
Maybe the problem is that step 6 mentions a checkbox which isn’t shown.
I made some edits that I think help.
There need to be new images, but this is better than the old instructions that don’t match the current interface.
Jammy is gone and I’ve forgotten who replaced them.
I made some edits that I think help.
I am surprised you were able to do that
Also, Not even TL4 can edit the discourse documentation?
As said in the linked topic above:
Why only team members?
Restricting the creation and editing of official documentation to our team ensures consistency and reliability. We aim to provide precise, well-maintained resources for everyone, from new users to seasoned developers. All community members can still reply to these topics to discuss the content or suggest changes.
But what I think we really need is if you click the advanced button, have a thing that says “use a ssh link for private directories, OK?”
showPublicKey
gets set if a ssh link is pasted in, so what might be good is if they click “advanced” and haven’t pasted a ssh link, to tell me that I are an idiot. (But in a nice way.)
- {{#if this.advancedVisible}}
- <div class="branch">
- <div class="label">
- {{i18n "admin.customize.theme.remote_branch"}}
- </div>
- <Input @value={{this.branch}} placeholder="main" />
- </div>
- {{/if}}
- {{#if this.showPublicKey}}
- <div class="public-key">
- <div class="label">
- {{i18n "admin.customize.theme.public_key"}}
- </div>
- <div class="public-key-text-wrapper">
- <Textarea
- class="public-key-value"
- readonly={{true}}
- @value={{this.publicKey}}
- {{did-insert this.generatePublicKey}}
- />
This file has been truncated. show original
I am surprised you were able to do that
Yeah. People keep being surprised that I’m TL4. Last week I replied to something that no one is supposed to reply to. I think I managed not to do that this time.
People keep being surprised that I’m TL4.
I know you are TL4. But I didn’t know you are part of the Discourse team
Yeah. I should probably stop editing those things as if I were.
Jammy is gone and I’ve forgotten who replaced them
@hugh has stepped into the role in the meantime.
Thanks Jay. I’ve updated that topic with revised text instructions and new screenshots.
This guide explains how to install a Discourse theme or theme component from a private GitHub repository. Required user level: Administrator Summary This documentation covers the process of installing a Discourse theme or theme component from a private GitHub repository. It includes steps for generating and using SSH keys for secure access. You will need to have administrator access to both your Discourse instance and the GitHub repository you are installin…