Skip to content

Commit

Permalink
Merge pull request #90 from AgainIoT/main
Browse files Browse the repository at this point in the history
Hot Fix : Open-Set-Go.io domain changed is not applied
  • Loading branch information
ymw0407 authored Oct 6, 2023
2 parents d8da4fd + 5ac9f00 commit 6122818
Show file tree
Hide file tree
Showing 6 changed files with 19 additions and 14 deletions.
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Welcome to Open-Set-Go contributing guide

Thank you for investing your time in contributing to our Open-Set-Go project! Any contribution you make will be reflected on [Open-Set-Go.io](https://open-set-go.netlify.app/) & [README.md](https://github.com/AgainIoT/Open-Set-Go#contributors) ✨.
Thank you for investing your time in contributing to our Open-Set-Go project! Any contribution you make will be reflected on [Open-Set-Go.io](https://docs.open-set-go.com) & [README.md](https://github.com/AgainIoT/Open-Set-Go#contributors) ✨.

We are committed to fostering a contribution-friendly environment that encourages contributions and aims to evolve into an open-source community. Please have a lot of conversations on [our Discussion](https://github.com/AgainIoT/Open-Set-Go/discussions)!

Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
# Open-Set-Go_client

<p align="center">
<a href="https://open-set-go.netlify.app/" target="blank"><img src="https://github.com/AgainIoT/Open-Set-Go/raw/main/.github/images/Open-Set-Go.png" width="200" alt="Open-Set-Go Logo" /></a>
<a href="https://docs.open-set-go.com/" target="blank"><img src="https://github.com/AgainIoT/Open-Set-Go/raw/main/.github/images/Open-Set-Go.png" width="200" alt="Open-Set-Go Logo" /></a>
</p>

<p align="center">
Start Open-Source Projects easily, quickly and conveniently with <a href="https://open-set-go.netlify.app/" target="blank">Open-Set-Go</a>!
Start Open-Source Projects easily, quickly and conveniently with <a href="https://docs.open-set-go.com/" target="blank">Open-Set-Go</a>!
</p>

<p align="center">
Expand Down Expand Up @@ -119,7 +119,7 @@ Open-Set-Go makes it easy, fast and simple to start an Open-Source project, whil

We are conducting documentation at Open-Set-Go.io. Please refer to the following. _You can see our technical blog & showcase on Open-Set-Go.io_

- <a href="https://open-set-go.netlify.app/">Open-Set-Go.io</a>
- <a href="https://docs.open-set-go.com/">Open-Set-Go.io</a>

## Contributing

Expand Down
13 changes: 9 additions & 4 deletions SECURITY.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,14 @@

## Supported Versions

Use this section to tell people about which versions of your project are
currently being supported with security updates.

| Version | Supported |
| ------- | ------------------ |
| 0.0.x | :white_check_mark: |
| 0.0.x ||
| 1.0.0 ||
| 1.0.1 | ☑️ |

## Reporting a Vulnerability

We strongly encourage you to report security vulnerabilities to
our private security mailing list: yunminwo1211@gmail.com - first, before
disclosing them in any public forums.
4 changes: 3 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,9 @@
"web-vitals": "^2.1.4"
},
"scripts": {
"start": "HTTPS=true react-scripts start",
"start": "react-scripts start",
"start:win": "set HTTPS=true&&react-scripts start",
"start:linux": "HTTPS=true react-scripts start",
"start:dev": "env-cmd -f .env.development.local react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
Expand Down
2 changes: 1 addition & 1 deletion src/components/main/Footer.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ export default function Footer() {
</InfoDiv>
<VlineDiv />
<GithubDiv>
<a href="https://open-set-go.netlify.app/">
<a href="https://docs.open-set-go.com/">
<DocsP>DOCS</DocsP>
</a>
<a href="https://github.com/AgainIoT/Open-Set-Go">
Expand Down
6 changes: 2 additions & 4 deletions src/layout/Header.js
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ export const Header = (props) => {
<MenuItem
key={"Docs"}
onClick={() =>
handleOpenNewTab("https://open-set-go.netlify.app/")
handleOpenNewTab("https://docs.open-set-go.com")
}
>
<Typography textAlign="center">Docs</Typography>
Expand Down Expand Up @@ -209,9 +209,7 @@ export const Header = (props) => {
))}
<MenuItemWrapper
key="docs"
onClick={() =>
handleOpenNewTab("https://open-set-go.netlify.app/")
}
onClick={() => handleOpenNewTab("https://docs.open-set-go.com")}
>
Docs
</MenuItemWrapper>
Expand Down

0 comments on commit 6122818

Please sign in to comment.