Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
2edbe0b
Update docker-compose.yml
koromerzhin Feb 4, 2022
1991c1c
Update docker-compose.yml
koromerzhin Feb 8, 2022
e7d5dd4
fix(quasar): use npm run start
koromerzhin Feb 8, 2022
7204ce8
fix(docker): use official image
koromerzhin Feb 9, 2022
1972c45
fix(doc): to download
koromerzhin May 3, 2022
416b3dd
feat(scripts): with korojscommands
koromerzhin Jan 18, 2023
e1f9f1c
fix(README): add help to launch
koromerzhin Jan 18, 2023
0ca71f3
:busts_in_silhouette: Add @renovate-bot as a contributor
koromerzhin Jan 18, 2023
870cb8d
:busts_in_silhouette: Add @dependabot[bot] as a contributor
koromerzhin Jan 18, 2023
292d0d6
fix(config): enable dashboard renovate
koromerzhin Jan 18, 2023
14da3b5
fix(ci/cd): update ubuntu
koromerzhin Jan 18, 2023
58fd4fc
Add .whitesource configuration file
mend-bolt-for-github[bot] Jan 18, 2023
68a9020
Merge pull request #115 from hackariens/whitesource/configure
koromerzhin Jan 19, 2023
30a002d
:busts_in_silhouette: Add @mend-bolt-for-github[bot] as a contributor
koromerzhin Jan 19, 2023
f79bc2c
feat(ci/cd): check contributors
koromerzhin Jan 24, 2023
bafcfa8
fix(libs): update korojscommands
koromerzhin Jan 24, 2023
6776b4d
fix(libs): update korojscommands@1.2.11
koromerzhin Jan 24, 2023
f7f6c0a
fix(ci/cd): disable all-contributors
koromerzhin Jan 24, 2023
6a83cc3
fix(config): with new initialisation
koromerzhin Jan 30, 2023
a810808
fix(libs): update korojscommands
koromerzhin Jan 30, 2023
f4a30f2
fix(scripts): update korojscommands
koromerzhin Feb 1, 2023
c65edfb
chore(deps): bump qs and @quasar/app in /apps
dependabot[bot] Feb 1, 2023
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
37 changes: 19 additions & 18 deletions .all-contributorsrc
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"projectName": "template-quasar",
"projectOwner": "koromerzhin",
"projectName": "quasar",
"projectOwner": "hackariens",
"repoType": "github",
"repoHost": "https://github.com",
"files": [
Expand All @@ -10,7 +10,7 @@
"commit": true,
"contributorsPerLine": 7,
"commitConvention": "gitmoji",
"badgeTemplate": "[![All Contributors](https://img.shields.io/badge/all_contributors-<%= contributors.length %>-orange.svg?style=flat-square)](#-contributors)",
"badgeTemplate": "![All Contributors](https://img.shields.io/badge/all_contributors-<%= contributors.length %>-orange.svg?style=flat-square)",
"contributorTemplate": "<a href=\"<%= contributor.profile %>\"><img src=\"<%= contributor.avatar_url %>\" width=\"<%= options.imageSize %>px;\" alt=\"\"/><br /><sub><b><%= contributor.name %></b></sub></a>",
"contributors": [
{
Expand All @@ -24,18 +24,13 @@
},
{
"login": "renovate-bot",
"name": "Renovate Bot",
"avatar_url": "https://avatars0.githubusercontent.com/u/25180681?v=4",
"profile": "https://renovatebot.com",
"name": "Mend Renovate",
"avatar_url": "https://avatars.githubusercontent.com/u/25180681?v=4",
"profile": "https://www.mend.io/free-developer-tools/renovate/",
"contributions": [
"bug",
"code",
"infra",
"maintenance",
"platform",
"review",
"security",
"tool"
"maintenance"
]
},
{
Expand All @@ -46,12 +41,18 @@
"contributions": [
"bug",
"code",
"infra",
"maintenance",
"platform",
"review",
"security",
"tool"
"maintenance"
]
},
{
"login": "mend-bolt-for-github[bot]",
"name": "mend-bolt-for-github[bot]",
"avatar_url": "https://avatars.githubusercontent.com/in/16809?v=4",
"profile": "https://github.com/apps/mend-bolt-for-github",
"contributions": [
"bug",
"code",
"maintenance"
]
}
]
Expand Down
4 changes: 4 additions & 0 deletions .env.example
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
STACK=quasar
FOLDERPHAR=apps
FOLDERLAMPY=lampy
DOCKERCOMPOSEFILES=docker-compose.yml docker-compose-lampy.yml
76 changes: 0 additions & 76 deletions .github/CODE_OF_CONDUCT.md

This file was deleted.

38 changes: 0 additions & 38 deletions .github/ISSUE_TEMPLATE/bug_report.md

This file was deleted.

10 changes: 0 additions & 10 deletions .github/ISSUE_TEMPLATE/custom.md

This file was deleted.

20 changes: 0 additions & 20 deletions .github/ISSUE_TEMPLATE/feature_request.md

This file was deleted.

38 changes: 15 additions & 23 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,43 +1,35 @@
name: Continuous Integration
name: ci
on: [push]
jobs:
tests:
runs-on: ${{ matrix.operating-system }}
strategy:
fail-fast: false
matrix:
operating-system: [ubuntu-20.04]
operating-system: [ubuntu-22.04]
steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
submodules: recursive
- name: Repository lampy
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
submodules: recursive
ref: 'v2.0'
repository: koromerzhin/lampy
path: lampy
- name: Cache npm packages
id: npm-cache
uses: actions/cache@v2
with:
path: node_modules
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-node
- name: Install npm dependencies
if: steps.npm-cache.outputs.cache-hit != 'true'
run: make node_modules
run: npm install
- name: 'set .env'
run: 'cp .env.example .env'
- name: 'Launch Lampy'
run: make lampy
run: cd lampy && npm run exec
- name: 'Image pull'
run: make docker image-pull
run: npm run docker:getpull-image
- name: 'Build containers'
run: make docker deploy
- name: 'sleep'
run: make sleep 60
- name: 'docker ls'
run: make docker ls
- name: Linter README.md
run: make linter readme
run: npm run docker:deploy
- name: 'Waiting'
run: npm run docker:waiting
- name: linter readme.md
run: npm run lint:markdown
9 changes: 3 additions & 6 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,3 @@
# Commit your application's lock file https://getcomposer.org/doc/01-basic-usage.md#commit-your-composer-lock-file-to-version-control
# You may choose to ignore a library lock file http://getcomposer.org/doc/02-libraries.md#lock-file
# composer.lock
node_modules
apps/node_modules/
apps/dist
/node_modules
/apps
.env
3 changes: 0 additions & 3 deletions .gitmodules

This file was deleted.

14 changes: 14 additions & 0 deletions .whitesource
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
{
"scanSettings": {
"baseBranches": []
},
"checkRunSettings": {
"vulnerableCheckRunConclusionLevel": "failure",
"displayMode": "diff",
"useMendCheckNames": true
},
"issueSettings": {
"minSeverityLevel": "LOW",
"issueType": "DEPENDENCY"
}
}
84 changes: 0 additions & 84 deletions CHANGELOG.md

This file was deleted.

Loading