Skip to content

Commit

Permalink
Upgrade Professional Edition
Browse files Browse the repository at this point in the history
  • Loading branch information
kuaifan committed Mar 24, 2023
1 parent a172909 commit 3a9001e
Show file tree
Hide file tree
Showing 1,228 changed files with 108,542 additions and 34,746 deletions.
6 changes: 5 additions & 1 deletion .env.docker
Original file line number Diff line number Diff line change
@@ -1,13 +1,14 @@
APP_NAME=DooTask
APP_ENV=local
APP_KEY=
APP_DEBUG=true
APP_DEBUG=false
APP_SCHEME=auto
APP_URL=http://localhost

APP_ID=
APP_IPPR=
APP_PORT=2222
APP_DEV_PORT=

LOG_CHANNEL=stack
LOG_LEVEL=debug
Expand Down Expand Up @@ -53,6 +54,9 @@ PUSHER_APP_KEY=
PUSHER_APP_SECRET=
PUSHER_APP_CLUSTER=mt1

JUKE_KEY_JOKE=
JUKE_KEY_SOUP=

MIX_PUSHER_APP_KEY="${PUSHER_APP_KEY}"
MIX_PUSHER_APP_CLUSTER="${PUSHER_APP_CLUSTER}"

Expand Down
75 changes: 0 additions & 75 deletions .github/workflows/electron-generic.yml

This file was deleted.

85 changes: 0 additions & 85 deletions .github/workflows/electron-main.yml

This file was deleted.

33 changes: 33 additions & 0 deletions .github/workflows/publish-desktop.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
name: Publish Desktop

on:
push:
tags:
- 'v*'

jobs:
build:
runs-on: macos-latest
environment: build

if: startsWith(github.event.ref, 'refs/tags/v')
steps:
- name: Checkout
uses: actions/checkout@v3

- name: Use Node.js 16.x
uses: actions/setup-node@v1
with:
node-version: 16.x

- name: Build
env:
APPLEID: ${{ secrets.APPLEID }}
APPLEIDPASS: ${{ secrets.APPLEIDPASS }}
CSC_LINK: ${{ secrets.CSC_LINK }}
CSC_KEY_PASSWORD: ${{ secrets.CSC_KEY_PASSWORD }}
DP_KEY: ${{ secrets.DP_KEY }}
GH_TOKEN: ${{ secrets.GH_TOKEN }}
GH_REPOSITORY: ${{ github.repository }}
run: ./cmd electron all

2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
/public/.well-known
/public/.user.ini
/storage/*.key
/config/LICENSE
/vendor
/build
/tmp
Expand All @@ -14,7 +15,6 @@
.vscode
.vagrant
.phpunit.result.cache
CHANGELOG.md
Homestead.json
Homestead.yaml
npm-debug.log
Expand Down
3 changes: 3 additions & 0 deletions .gitmodules
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
[submodule "resources/drawio"]
path = resources/drawio
url = https://github.com/jgraph/drawio.git
[submodule "resources/mobile"]
path = resources/mobile
url = https://github.com/kuaifan/dootask-app.git
13 changes: 13 additions & 0 deletions .gitpod.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
# This configuration file was automatically generated by Gitpod.
# Please adjust to your needs (see https://www.gitpod.io/docs/config-gitpod-file)
# and commit this file to your remote git repository to share the goodness with others.

tasks:
- init: sudo ./cmd install
command: ./cmd dev

ports:
- port: 2222
visibility: public
- port: 22222
visibility: public
Loading

0 comments on commit 3a9001e

Please sign in to comment.