remove caches

:
This commit is contained in:
Sambo Chea 2020-02-13 19:30:48 +07:00
parent 5cb5ff7087
commit 3afe5705c0
11 changed files with 0 additions and 1816 deletions

View File

@ -1,53 +0,0 @@
name: Sandbox Clinic Desktop For Dev
on: [push]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
steps:
- name: Starting Context
env:
GITHUB_CONTEXT: ${{ toJson(github) }}
run: echo "$GITHUB_CONTEXT"
- name: Checkout Git Repository
uses: actions/checkout@v1
with:
fetch-depth: 1
- name: Use Node.js 10.x
uses: actions/setup-node@v1
with:
node-version: 10.x
- name: yarn install
run: |
yarn install
- name: Publish
run: |
yarn run dist
- name: Cleanup artifacts Linux and macOS
if: matrix.os != 'windows-latest'
run: |
mkdir artifacts
cp -R dist/dev/* artifacts
- name: Cleanup artifacts Windowns
if: matrix.os == 'windows-latest'
run: |
mkdir artifacts
mv dist/dev/*.exe artifacts
- name: Upload artifacts
uses: actions/upload-artifact@v1
with:
name: ${{matrix.os}}
path: artifacts
- name: Release
uses: softprops/action-gh-release@v1
if: startsWith(github.ref, 'refs/tags/v')
with:
files: "artifacts/**"
env:
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}

View File

@ -1,53 +0,0 @@
name: Sandbox Clinic Desktop
on: [push]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
steps:
- name: Starting Context
env:
GITHUB_CONTEXT: ${{ toJson(github) }}
run: echo "$GITHUB_CONTEXT"
- name: Checkout Git Repository
uses: actions/checkout@v1
with:
fetch-depth: 1
- name: Use Node.js 10.x
uses: actions/setup-node@v1
with:
node-version: 10.x
- name: yarn install
run: |
yarn install
- name: Publish
run: |
yarn run sandbox
- name: Cleanup artifacts Linux and macOS
if: matrix.os != 'windows-latest'
run: |
mkdir artifacts
cp -R dist/sandbox/* artifacts
- name: Cleanup artifacts Windowns
if: matrix.os == 'windows-latest'
run: |
mkdir artifacts
mv dist/sandbox/*.exe artifacts
- name: Upload artifacts
uses: actions/upload-artifact@v1
with:
name: ${{matrix.os}}
path: artifacts
- name: Release
uses: softprops/action-gh-release@v1
if: startsWith(github.ref, 'refs/tags/v')
with:
files: "artifacts/**"
env:
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}

4
.gitignore vendored
View File

@ -1,4 +0,0 @@
node_modules
package-lock.json
yarn.lock
dist

View File

@ -1,14 +0,0 @@
# CUBETIQ Clinic Application
![Sandbox Clinic Desktop](https://github.com/CUBETIQ/sandbox-clinic/workflows/Sandbox%20Clinic%20Desktop/badge.svg)
#### Run Dev Application
```sh
npm start
```
#### Run Product Application
```sh
npm run dist
```

View File

@ -1,17 +0,0 @@
{
"productName": "Clinic-Dev",
"appId": "com.cubetiqs.clinic",
"mac": {
"category": "com.cubetiqs.pro.clinic"
},
"linux": {
"category": "com.cubetiqs.pro.clinic",
"target": ["AppImage", "deb"]
},
"win": {
"target": "nsis"
},
"directories": {
"output": "./dist/dev"
}
}

View File

@ -1,17 +0,0 @@
{
"productName": "Clinic-Sandbox",
"appId": "com.cubetiqs.clinic",
"mac": {
"category": "com.cubetiqs.pro.clinic"
},
"linux": {
"category": "com.cubetiqs.pro.clinic",
"target": ["AppImage", "deb"]
},
"win": {
"target": "nsis"
},
"directories": {
"output": "./dist/sandbox"
}
}

View File

@ -1 +0,0 @@
DR_URL=http://clinic.cubetiq.online?platform=desktop

View File

@ -1 +0,0 @@
DR_URL=http://sandbox.clinic.cubetiq.online?platform=desktop

28
main.js
View File

@ -1,28 +0,0 @@
const electron = require("electron");
const { app, BrowserWindow } = electron;
const DR_URL = process.env.DR_URL || "http://sandbox.clinic.cubetiq.online?platform=desktop&offline=true&source=" + (process.env.USERNAME || "unknown");
const DR_TITLE = "DR PROFESSIONAL CLINIC"
let mainApp;
app.allowRendererProcessReuse = true;
app.on("ready", () => {
mainApp = new BrowserWindow({
width: 1000,
height: 700
});
mainApp.webContents.executeJavaScript(`localStorage.setItem("author", "Sambo Chea <sombochea@cubetiqs.com>")`)
mainApp.webContents.executeJavaScript(`localStorage.setItem("IS_ELECTRON", true)`)
mainApp.setFullScreen(true)
mainApp.setTitle(DR_TITLE);
console.log("Starting from:", DR_URL)
mainApp.loadURL(DR_URL);
mainApp.on("closed", () => {
mainApp = null;
});
});

View File

@ -1,49 +0,0 @@
{
"name": "clinic",
"version": "1.0.0",
"description": "Clinic Application",
"main": "main.js",
"build": {
"productName": "Clinic-Sandbox",
"appId": "com.cubetiqs.clinic",
"mac": {
"category": "com.cubetiqs.pro.clinic"
},
"linux": {
"category": "com.cubetiqs.pro.clinic",
"target": ["AppImage", "deb"]
},
"win": {
"target": "nsis"
}
},
"devDependencies": {
"cross-env": "^7.0.0",
"electron": "^8.0.0",
"electron-builder": "^22.3.2"
},
"scripts": {
"postinstall": "electron-builder install-app-deps",
"start": "yarn && cross-env DR_URL=http://clinic.cubetiq.online?platform=desktop electron ./main",
"pack": "electron-builder --dir",
"dist": "electron-builder",
"builder-help": "electron-builder --help",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/CUBETIQ/sandbox-clinic.git"
},
"keywords": [
"clinic"
],
"author": {
"name": "Sambo Chea",
"email": "sombochea@cubetiqs.com"
},
"license": "ISC",
"bugs": {
"url": "https://github.com/CUBETIQ/sandbox-clinic/issues"
},
"homepage": "https://github.com/CUBETIQ/sandbox-clinic#readme"
}

1579
yarn.lock

File diff suppressed because it is too large Load Diff