Skip to content

Commit c3bf505

Browse files
authored
Version 0.3.2 with SonarCloud QA (#88)
* initial commit * wip * wip * wip * wip * wip * wip * wip * wip * wip * wip * wip * wip * wip * wip * wip * wip * wip * wip * wip * wip * wip * wip * wip * wip * wip * wip * wip * wip * wip * wip * wip' * wip * wip * wip * wip' * wip * wip * wip * wip * wip * wip * wip * wip * wip * wip * wip * wip * wip * wip * fixes * wip * wip * fix tests * wip * move json2csv to backend * wip * wip * wip * wip * wip * wip * wip * wip * wip * wip * wip * wip * wip * wip * wip * wip * wip * wip * wip * wip * wip * wip * wip * wip * wip * wip * wip * wip * wip * wip * wip * wip * wip * wip * wip * wip * wip * wip * wip * wip * wip * wip * wip * wip * wip * wip * wip * wip * wip * wip * wip * wip * wip * wip * wip * wip * wip * wip * wip * wip * wip * wip
1 parent cdc6941 commit c3bf505

File tree

5 files changed

+12
-12
lines changed

5 files changed

+12
-12
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ Well... what started as a CRUD component for VueJS has grown to a full-stack app
1414
1515
# NOTICES & UPDATES
1616

17-
Latest Version [0.3.2](https://github.com/ais-one/vue-crud-x/releases/tag/0.3.2) - Released 2020 Jul 11 1545 +8GMT
17+
Latest Version [0.3.2](https://github.com/ais-one/vue-crud-x/releases/tag/0.3.2) - Released 2020 Jul 11 0400 +8GMT
1818

1919
**vue-crud-x 0.3+** Reorganize folders and structure, for ease of developing and maintaining multiple applications.
2020

common-lib/webpacked/WebCam.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<canvas ref="canvas" id="canvas" width="320" height="240"></canvas>
66
<ul>
77
<li v-for="c in captures" :key="c">
8-
<img v-bind:src="c" height="50" />
8+
<img v-bind:src="c" height="50" alt="camera captures" />
99
</li>
1010
</ul>
1111
</div>

example-app/config/index.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,14 +28,14 @@ global.CONFIG.AUTH_USER_FIELD_GAKEY = global.CONFIG.AUTH_USER_FIELD_GAKEY || 'ga
2828
// AUTH JWT - secret key
2929
global.CONFIG.JWT_ALG = global.CONFIG.JWT_ALG || 'HS256' // 'RS256' (use SSL certs), 'HS256' (use secret string)
3030
global.CONFIG.JWT_SECRET = global.CONFIG.JWT_SECRET || '123456789' // HS256
31-
global.CONFIG.JWT_EXPIRY = global.CONFIG.JWT_EXPIRY || 5, // '150d', '15d', '15m', '15s', use small expiry to test refresh mechanism, numeric is seconds
31+
global.CONFIG.JWT_EXPIRY = global.CONFIG.JWT_EXPIRY || 5 // '150d', '15d', '15m', '15s', use small expiry to test refresh mechanism, numeric is seconds
3232
global.CONFIG.JWT_REFRESH_EXPIRY = global.CONFIG.JWT_REFRESH_EXPIRY || 3600 // do not allow refresh handling after X seconds
3333
global.CONFIG.JWT_REFRESH_STORE = global.CONFIG.JWT_REFRESH_STORE || 'keyv' // mongo, objection, redis, keyv (default)
3434
global.CONFIG.JWT_REFRESH_STORE_NAME = global.CONFIG.JWT_REFRESH_STORE_NAME || 'user_session' // collection or table name
3535

3636
// AUTH - OTP
37-
global.CONFIG.USE_OTP = global.CONFIG.USE_OTP || 'TEST', // GA, SMS, '' (also on FE) set to TEST for testing using 111111 as PIN
38-
global.CONFIG.OTP_EXPIRY = global.CONFIG.OTP_EXPIRY || '1m', // allow 1 minute for user to do OTP
37+
global.CONFIG.USE_OTP = global.CONFIG.USE_OTP || 'TEST' // GA, SMS, '' (also on FE) set to TEST for testing using 111111 as PIN
38+
global.CONFIG.OTP_EXPIRY = global.CONFIG.OTP_EXPIRY || '1m' // allow 1 minute for user to do OTP
3939

4040
// MONGO DB INFO - SHOULD STORE IN SEPERATE AES ENCRYPTED FILE IN PROD
4141
// MONGO_URL=mongodb://{USER}:{PASSWORD}@{HOST}:{PORT}/{DBNAME}?authMechanism=SCRAM-SHA-1&authSource={AUTH_DBNAME}

example-web/spa/public/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<!DOCTYPE html>
2-
<html>
2+
<html lang="en">
33
<head>
44
<meta charset="utf-8">
55
<meta http-equiv="X-UA-Compatible" content="IE=edge">

example-web/spa/webpack.config.js

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,12 @@ module.exports = {
77
'css-loader',
88
{
99
loader: 'sass-loader',
10-
// Requires sass-loader@^7.0.0
11-
options: {
12-
implementation: require('sass'),
13-
fiber: require('fibers'),
14-
indentedSyntax: true // optional
15-
},
10+
// // Requires sass-loader@^7.0.0
11+
// options: {
12+
// implementation: require('sass'),
13+
// fiber: require('fibers'),
14+
// indentedSyntax: true // optional
15+
// },
1616
// Requires sass-loader@^8.0.0
1717
options: {
1818
implementation: require('sass'),

0 commit comments

Comments
 (0)