Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
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
38 changes: 3 additions & 35 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 @@ -21,38 +21,6 @@
"contributions": [
"code"
]
},
{
"login": "renovate-bot",
"name": "Renovate Bot",
"avatar_url": "https://avatars0.githubusercontent.com/u/25180681?v=4",
"profile": "https://renovatebot.com",
"contributions": [
"bug",
"code",
"infra",
"maintenance",
"platform",
"review",
"security",
"tool"
]
},
{
"login": "dependabot[bot]",
"name": "dependabot[bot]",
"avatar_url": "https://avatars.githubusercontent.com/in/29110?v=4",
"profile": "https://github.com/apps/dependabot",
"contributions": [
"bug",
"code",
"infra",
"maintenance",
"platform",
"review",
"security",
"tool"
]
}
]
}
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.

36 changes: 14 additions & 22 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Continuous Integration
name: ci
on: [push]
jobs:
tests:
Expand All @@ -9,35 +9,27 @@ jobs:
operating-system: [ubuntu-20.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
3 changes: 0 additions & 3 deletions .gitmodules

This file was deleted.

84 changes: 0 additions & 84 deletions CHANGELOG.md

This file was deleted.

39 changes: 0 additions & 39 deletions CONTRIBUTING.md

This file was deleted.

Loading