Skip to content
This repository has been archived by the owner on Jun 21, 2023. It is now read-only.

Commit

Permalink
Merge pull request #97 from grey-software/client-redesign
Browse files Browse the repository at this point in the history
Client redesign
  • Loading branch information
Ali Raza committed Nov 28, 2019
2 parents 1044bac + e95788a commit c14235d
Show file tree
Hide file tree
Showing 24 changed files with 13,033 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,29 @@ jobs:
name: Building App
command: |
npm --prefix ./client run build
Build-App-2:
docker:
- image: circleci/node:latest
steps:
- checkout
# Download and cache dependencies
- restore_cache:
keys:
- v1-dependencies-{{ checksum "package.json" }}
# fallback to using the latest cache if no exact match is found
- v1-dependencies-
- run:
name: Installing app dependencies
command: |
npm --prefix ./client-redesign install
- save_cache:
paths:
- node_modules
key: v1-dependencies-{{ checksum "package.json" }}
- run:
name: Building App
command: |
npm --prefix ./client-redesign run build
publish-github-release:
docker:
- image: cibuilds/github:0.10
Expand All @@ -76,6 +99,7 @@ workflows:
jobs:
- Build-Extension
- Build-App
- Build-App-2
- publish-github-release:
requires:
- Build-Extension
Expand Down
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -27,3 +27,6 @@ backend/cloud config/terraform.exe
backend/cloud config/terraform.tfstate
backend/cloud config/terraform.tfvars
backend/cloud config/.terraform

client-redesign/dist
client-redesign/node_modules
24 changes: 24 additions & 0 deletions client-redesign/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
# toonin-client

## Project setup
```
npm install
```

### Compiles and hot-reloads for development
```
npm run serve
```

### Compiles and minifies for production
```
npm run build
```

### Lints and fixes files
```
npm run lint
```

### Customize configuration
See [Configuration Reference](https://cli.vuejs.org/config/).
3 changes: 3 additions & 0 deletions client-redesign/babel.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
module.exports = {
presets: ["@vue/cli-plugin-babel/preset"]
};
Loading

0 comments on commit c14235d

Please sign in to comment.