Skip to content

Commit

Permalink
Merge pull request #3266 from harehare/improved_settings
Browse files Browse the repository at this point in the history
Improved settings
  • Loading branch information
harehare authored Nov 29, 2023
2 parents cac650c + 839b522 commit 495b2b0
Show file tree
Hide file tree
Showing 95 changed files with 4,410 additions and 2,118 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/build_and_deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -98,6 +98,25 @@ jobs:
needs: build
runs-on: ubuntu-latest
steps:
- name: Checkout Repo
if: ${{ inputs.noop != 'true' }}
uses: actions/checkout@v4
with:
ref: ${{ inputs.ref }}
- uses: actions/setup-node@v3
if: ${{ inputs.noop != 'true' }}
with:
node-version-file: ".tool-versions"
- name: Install Dependencies for tools
if: ${{ inputs.noop != 'true' }}
working-directory: ./tools/fontlist
run: npm ci
- name: Upload font list
if: ${{ inputs.noop != 'true' }}
run: node ./tools/fontlist/upload.js
env:
DATABASE_GOOGLE_APPLICATION_CREDENTIALS_JSON: ${{ secrets.DATABASE_GOOGLE_APPLICATION_CREDENTIALS_JSON }}
FIREBASE_STORAGE_BUCKET: ${{ secrets.FIREBASE_STORAGE_BUCKET }}
- name: Deploy backend to render.com
if: ${{ inputs.noop != 'true' }}
run: curl --silent --show-error --fail $RENDER_DEPLOY_HOOK_URL > /dev/null
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -59,3 +59,4 @@ cypress

certs/*
backend/tmp/
data
34 changes: 17 additions & 17 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

TextUSM is a simple tool. Help you draw user story map using indented text.

![image](./img/textusm.gif)
![image](./assets/img/textusm.gif)

## Features

Expand Down Expand Up @@ -54,7 +54,7 @@ TextUSM
Press Shift + Tab to unindent lines: Online tool for Generate a User Story Mapping from indented text.
```

![image](./img/usm.png)
![image](./assets/img/usm.png)

### Business Model Canvas

Expand All @@ -79,7 +79,7 @@ TextUSM
Customer Relationships
```

![image](./img/bmc.png)
![image](./assets/img/bmc.png)

### Opportunity Canvas

Expand All @@ -106,7 +106,7 @@ Budget
Budget
```

![image](./img/opc.png)
![image](./assets/img/opc.png)

### 4Ls Retrospective

Expand All @@ -121,7 +121,7 @@ Longed for
Longed for
```

![image](./img/4ls.png)
![image](./assets/img/4ls.png)

### Start, Stop, Continue Retrospective

Expand All @@ -134,7 +134,7 @@ Continue
Continue
```

![image](./img/ssc.png)
![image](./assets/img/ssc.png)

### KPT Retrospective

Expand All @@ -147,7 +147,7 @@ Try
Try
```

![image](./img/kpt.png)
![image](./assets/img/kpt.png)

### MindMap

Expand All @@ -163,7 +163,7 @@ TextUSM
Share your diagrams online with your colleagues.
```

![image](./img/mmp.png)
![image](./assets/img/mmp.png)

### Empathy Map

Expand All @@ -175,7 +175,7 @@ DOES
FEELS
```

![image](./img/emm.png)
![image](./assets/img/emm.png)

### Table

Expand Down Expand Up @@ -203,7 +203,7 @@ Row2
Column6
```

![image](./img/table.png)
![image](./assets/img/table.png)

### Site Map

Expand All @@ -222,7 +222,7 @@ Home
harehare1110@gmail.com
```

![image](./img/smp.png)
![image](./assets/img/smp.png)

### Gantt Chart

Expand All @@ -236,7 +236,7 @@ Home
2019-12-31 2020-01-04
```

![image](./img/gct.png)
![image](./assets/img/gct.png)

### Impact Map

Expand All @@ -252,7 +252,7 @@ TextUSM
Share your diagrams online with your colleagues.
```

![image](./img/imm.png)
![image](./assets/img/imm.png)

### ER Diagram

Expand Down Expand Up @@ -288,7 +288,7 @@ tables
user_id int pk
```

![image](./img/erd.png)
![image](./assets/img/erd.png)

### Kanban

Expand All @@ -304,7 +304,7 @@ DONE
task3
```

![image](./img/kanban.png)
![image](./assets/img/kanban.png)

### Sequence Diagram

Expand Down Expand Up @@ -338,7 +338,7 @@ Par
Sync Message
```

![image](./img/sed.png)
![image](./assets//img/sed.png)

### Keyboard Layout

Expand Down Expand Up @@ -412,7 +412,7 @@ r1
1.25u
```

![image](./img/kbd60.png)
![image](./assets/img/kbd60.png)

## Developing

Expand Down
Loading

0 comments on commit 495b2b0

Please sign in to comment.