This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| deployments/ | |
| ├── france/ | |
| │ ├── checkout/ | |
| │ │ └── application.yml | |
| │ ├── dashboard/ | |
| │ │ └── application.yml | |
| │ └── login/ | |
| │ └── application.yml | |
| ├── germany/ | |
| │ ├── checkout/ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| version: 1 | |
| application: | |
| name: portfolio-dashboard | |
| group: example.com | |
| version: 1.2.3 | |
| repository: libs-releases | |
| team: | |
| product-owner: captain@example.com | |
| developers: | |
| - john@example.com |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| version: 2 | |
| updates: | |
| - package-ecosystem: npm | |
| assignees: | |
| - stfsy | |
| directory: / | |
| schedule: | |
| interval: weekly | |
| versioning-strategy: increase |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: 'stale issues and prs' | |
| on: | |
| schedule: | |
| - cron: '0 0 * * *' | |
| jobs: | |
| stale: | |
| runs-on: ubuntu-latest | |
| permissions: | |
| issues: write |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "types": [ | |
| { | |
| "type": "feat", | |
| "section": "Features" | |
| }, | |
| { | |
| "type": "fix", | |
| "section": "Bug Fixes" | |
| }, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import { createApp } from 'vue' | |
| import App from './App.vue' | |
| import './registerServiceWorker' | |
| import router from './router' | |
| import './styles.css' | |
| createApp(App).use(router).mount('#app') |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| @tailwind base; | |
| @tailwind components; | |
| @tailwind utilities; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| module.exports = { | |
| purge: { | |
| content: [ | |
| "./public/index.html", | |
| "./src/**/*.{vue,js,ts,jsx,tsx}", | |
| ] | |
| }, | |
| variants: { | |
| extend: { | |
| backdropBlur: ['hover'], |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| module.exports = { | |
| plugins: { | |
| '@tailwindcss/postcss7-compat': {}, | |
| autoprefixer: {}, | |
| cssnano: {} | |
| }, | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "name": "my-vue-app", | |
| "version": "0.1.0", | |
| "private": true, | |
| "scripts": { | |
| "serve": "vue-cli-service serve", | |
| "build": "vue-cli-service build", | |
| "test:unit": "vue-cli-service test:unit", | |
| "test:e2e": "vue-cli-service test:e2e", | |
| "test:e2e-headless": "vue-cli-service test:e2e --headless", |