Skip to content

Commit

Permalink
Merge pull request #183 from AlbericoD/feature/upgrade
Browse files Browse the repository at this point in the history
Feature/upgrade
  • Loading branch information
AlbericoD committed Jan 9, 2024
2 parents 51cc372 + da7a4ee commit 6b0a994
Show file tree
Hide file tree
Showing 93 changed files with 7,650 additions and 856 deletions.
42 changes: 42 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
name: Publish NPM Package

on:
workflow_dispatch:
push:
branches: [master]
tags:
- v[1-9]+.[0-9]+.[0-9]+

jobs:
release:
name: 📦 Release
runs-on: ubuntu-latest
permissions:
contents: write # to be able to publish a GitHub release
issues: write # to be able to comment on released issues
pull-requests: write # to be able to comment on released pull requests
id-token: write # to enable use of OIDC for npm provenance

steps:
- name: 📂 Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0

- name: ⚙️ Setup node
uses: actions/setup-node@v3
with:
node-version: "lts/*"
registry-url: "https://registry.npmjs.org"

- name: 📦 Install dependencies
run: npm ci

- name: 🚓 Audit dependencies #Verify the integrity of provenance attestations and registry signatures for installed dependencies
run: npm audit signatures

- name: 📰 Semantic Release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
run: npx semantic-release
60 changes: 0 additions & 60 deletions .github/workflows/publish-npm-package.yml

This file was deleted.

24 changes: 24 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@

# See https://help.github.com/ignore-files/ for more about ignoring files.

# dependencies
node_modules

# builds
build
dist
.rpt2_cache

# misc
.DS_Store
.env
.env.local
.env.development.local
.env.test.local
.env.production.local

npm-debug.log*
yarn-debug.log*
yarn-error.log*

*.tgz
12 changes: 12 additions & 0 deletions .releaserc
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
{
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/npm",
"@semantic-release/github",
"@semantic-release/git"
],
"branches": [
"master"
]
}
109 changes: 49 additions & 60 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@

- **Build.** Folders and structure ready for use in the overwolf store.

- **CI/CD - Experimental** continuous development, continuous testing, continuous integration, continuous deployment
- **CI/CD** continuous development, continuous testing, continuous integration, continuous deployment

---

Expand Down Expand Up @@ -83,19 +83,19 @@ For more information, please refer to:

## 📸 Screenshot

> In this version the project is configured and ready to test with the Hearthstone game, you can use the template, compile and test without modifying anything to understand the development flow.
> this version the project is configured and ready to test with the Hearthstone game, you can use the template, compile and test without modifying anything to understand the development flow.
#### Desktop Window

![Desktop Window](https://raw.githubusercontent.com/AlbericoD/overwolf-modern-react-boilerplate/master/doc/desktop-wn.png)
![Desktop Window](./doc/desktop-1.png)

#### InGame Window - 1

![Desktop Window](https://raw.githubusercontent.com/AlbericoD/overwolf-modern-react-boilerplate/master/doc/hearthstone-ingame.png)
![Ingame Window 1](./doc/ingame-1.png)

#### InGame Window - 2

![Desktop Window](https://raw.githubusercontent.com/AlbericoD/overwolf-modern-react-boilerplate/master/doc/hearthstone-ingame-2.png)
![Ingame Window 2](./doc/ingame-2.png)

## 💼 Project structure - Feature Folder.

Expand All @@ -104,28 +104,18 @@ Folder-by-type only works on small-scale projects. Folder-by-feature is superior
```text
.
|--- public
| |--- app/
| |-------IconMouseNormal.png
| |-------IconMouseOver.png
| |-------TaskbarIcon.png
| |-------desktop-icon.ico
| |-------manifest.json
| |--- store/
| |-------description.txt
| |-------store.json
| |--- index.html
|---- # essencial files for overwolf store
|--- src
| |--- app/
| |-------App.css
| |-------App.tsx
| |-------constants.ts
| |-------CurrentPage.tsx
| |-------rootReducer.ts
| |-------store.ts
| |----utils/*/**/.ts
| |--- components/*/**.tsx
| |--- features/*/**.tsx
| |--- typings/*/**.d.ts
| |----# global and shared components
| |----lib/
| |----# global and shared functions
| |--- components/
| |----# components that are not part of the application's business rule and can be reused in other features
| |--- features/
| |----# features that are part of the application's business rule and can be reused in other features
| |--- screens/
| |----# screens that are part of each entry point of the application from the ovewolf manifest
| |--- locales/
| |-----------de/**/*.json
| |-----------de/index.ts
Expand Down Expand Up @@ -155,10 +145,8 @@ Folder-by-type only works on small-scale projects. Folder-by-feature is superior
|--- .gitignore
|--- LICENSE
|--- README.md
|--- create-production-overwolf-build.sh
|--- package-lock.json
|--- package.json
|--- remote-dev-redux-devtools.js
|--- tsconfig.json
.
```
Expand All @@ -176,15 +164,14 @@ In overwolf it is not possible to install plugins to debug the code, so the alte

- if the installation is correct, a redux dev tools icon should appear in your browser's toolbar.
- click into icon then choose **"Open remote devTools"**
- click into settings option and let hostname called to **"localhost"** and port **8000**.
- click into settings option and let hostname called to **"localhost"** and port **8081**.

3. **Run Server Bridge**

- run the server that bridges the remote redux and the overwolf application.
```shell
#Change into directory
cd overwolf-modern-react-boilerplate
npm run start-remote-devtools
npm run start-remote-server
```

4. **Start debugging**
Expand All @@ -200,49 +187,51 @@ you need to create an optimized version of your code and the correct structure b
```shell
#Change into directory
cd overwolf-modern-react-boilerplate
npm run build
npm run build:overwolf
```

2. **Organize Folder**

```shell
npm run pack-overwolf
```
2. **Edit Changelog**

- **OBS 1** this organization script was tested on the git bash and linux terminal.
- **OBS 2** this organization script needs to be ported to windows bash powershell.
> To make it easier for users, contributors and overwolf team to see precisely what notable changes have been made between each release (or version) of the project.
3. **Create .zip**
3. **Send .zip** (if it is the first time you are sending the app, you need to send the .zip file to the overwolf team, so that they can create the app in the store)

- the generated code is located in `|--- build/**/.**`
- Package all **build/** folders to .zip
- just send your .zip code to the overwolf test team.

4. **Edit Changelog**
> To make it easier for users, contributors and overwolf team to see precisely what notable changes have been made between each release (or version) of the project.
- Package all **build/** folders to .zip _(the command above already does this for you)_
- just send your .zip code to the overwolf test team. _(package.vx.x.x.zip)_

```shell
$ vi project-root/CHANGELOG.md
```

## 📦 🔃 🛎️ CI/CD - Experimental
## 📦 🔃 🛎️ CI/CD

> throughout the development cycle testing or releasing small updates can become a bit tedious, so there is also a github action setting when you generate a new project, you don't actually need to do any extra steps if you use github, this means that whenever you add valid code to the main branch, then an automatic github action will do all the compiling and packaging steps automatically.
About [ CI/CD File.yml](https://raw.githubusercontent.com/AlbericoD/overwolf-modern-react-boilerplate/master/template/.github/workflows/overwolf-opk.yml)

check out some screenshots of what github actions looks like:

![Overview](https://raw.githubusercontent.com/AlbericoD/overwolf-modern-react-boilerplate/master/doc/ci-overview.png)
--
![Overview Details-1](https://raw.githubusercontent.com/AlbericoD/overwolf-modern-react-boilerplate/master/doc/ci-overview-details-1.png)
--
![Overview Details-2](https://raw.githubusercontent.com/AlbericoD/overwolf-modern-react-boilerplate/master/doc/ci-overview-details-2.png)
--
![Overview Release-1](https://raw.githubusercontent.com/AlbericoD/overwolf-modern-react-boilerplate/master/doc/ci-overview-release-1.png)
--
![Overview Release-2](https://raw.githubusercontent.com/AlbericoD/overwolf-modern-react-boilerplate/master/doc/ci-overview-release-2.png)
--
![Overview Release-3](https://raw.githubusercontent.com/AlbericoD/overwolf-modern-react-boilerplate/master/doc/ci-overview-release-3.png)

**in the near future the overwolf team will make available an API to publish an application, so just add a few lines of code at the end of the github actions and the build will be complete
## Configure Github Actions with secrets and environment variables

### variables

| Name | Description | type |
| ------------------- | ------------------- | ------ |
| PRE_RELEASE_CHANNEL | overwolf channel id | number |

> Note: Test Channel IDs from overwolf-cli
> Several commands work with test channels. While we plan to accept the channel's name, for now, we expect to receive the channel ID as the argument. You can find the channel's ID in the page URL of the channel in the Dev Console.
### secrets

| Name | Description | type |
| -------------- | -------------------- | ------ |
| OW_CLI_EMAIL | overwolf dev email | string |
| OW_CLI_API_KEY | overwolf dev api key | string |

> Check out some screenshots of what github actions looks like:
![label](./doc/ci-1.png)

![label](./doc/ci-2.png)

![label](./doc/ci-3.png)
Binary file added doc/ci-1.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added doc/ci-2.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added doc/ci-3.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed doc/ci-overview-details-1.png
Binary file not shown.
Binary file removed doc/ci-overview-details-2.png
Binary file not shown.
Binary file removed doc/ci-overview-release-1.png
Binary file not shown.
Binary file removed doc/ci-overview-release-2.png
Binary file not shown.
Binary file removed doc/ci-overview-release-3.png
Binary file not shown.
Binary file removed doc/ci-overview.png
Binary file not shown.
Binary file added doc/desktop-1.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed doc/desktop-wn.png
Binary file not shown.
Binary file removed doc/hearthstone-ingame-2.png
Binary file not shown.
Binary file removed doc/hearthstone-ingame.png
Binary file not shown.
Binary file added doc/ingame-1.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added doc/ingame-2.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 6b0a994

Please sign in to comment.