Skip to content

Commit

Permalink
Merge pull request #1069 from ThornWalli/beta
Browse files Browse the repository at this point in the history
Beta
  • Loading branch information
ThornWalli authored Aug 9, 2024
2 parents 1f7d569 + 7b6e8a6 commit 7ddd50d
Show file tree
Hide file tree
Showing 124 changed files with 16,327 additions and 6,628 deletions.
Empty file added .certs/README.md
Empty file.
4 changes: 2 additions & 2 deletions .github/workflows/beta.yml
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ jobs:
FIREBASE_URL: ${{ secrets.FIREBASE_URL }}

- name: Archive Production Artifact
uses: actions/upload-artifact@master
uses: actions/upload-artifact@v4
with:
name: artifact
path: ./packages/app/.output/public
Expand All @@ -99,7 +99,7 @@ jobs:
node: [20]
steps:
- name: Download Artifact
uses: actions/download-artifact@master
uses: actions/download-artifact@v4
with:
name: artifact
path: public
Expand Down
6 changes: 2 additions & 4 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -24,11 +24,9 @@ logs
.scannerwork

sw.*
env/cert/*
!env/cert/README.md
packages/app/.certs/*
!packages/app/.certs/README.md

/env/env.json
.env
.eslintcache
dist
*.ai
143 changes: 59 additions & 84 deletions CHANGELOG.md

Large diffs are not rendered by default.

13 changes: 7 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,13 @@

## Debug

| GET-Parameter | Description | Example |
| ---------------- | --------------------------- | --------------------------------------------------------------------------- |
| `?no-boot` | Disabled boot sequence. | [Link](https://lammpee.de/?no-boot) |
| `?no-webdos` | Disabled webdos sequence. | [Link](https://lammpee.de/?no-webdos) |
| `?start-command` | Initial command after boot. | [Link](https://lammpee.de/?start-command=execute+%22DF1:Synthesizer.app%22) |
| `?no-disk` | Show floppy disk hint | [Link](https://lammpee.de/?no-disk) |
| GET-Parameter | Description | Example |
| ------------------- | --------------------------- | --------------------------------------------------------------------------- |
| `?no-boot` | Disabled boot sequence. | [Link](https://lammpee.de/?no-boot) |
| `?no-webdos` | Disabled webdos sequence. | [Link](https://lammpee.de/?no-webdos) |
| `?no-cloud-storage` | Disabled cloud storage. | [Link](https://lammpee.de/?no-cloud-storage) |
| `?start-command` | Initial command after boot. | [Link](https://lammpee.de/?start-command=execute+%22DF1:Synthesizer.app%22) |
| `?no-disk` | Show floppy disk hint | [Link](https://lammpee.de/?no-disk) |

> Example: <https://lammpee.de/?no-boot&no-webdos&start-command=execute+%22DF1:Synthesizer.app%22>
Expand Down
13 changes: 2 additions & 11 deletions eslint.config.mjs
Original file line number Diff line number Diff line change
@@ -1,20 +1,11 @@
import { createConfigForNuxt } from '@nuxt/eslint-config/flat';
import eslintConfigPrettier from 'eslint-config-prettier';
import { withNuxt } from './packages/app/.nuxt/eslint.config.mjs';
import eslintPluginPrettierRecommended from 'eslint-plugin-prettier/recommended';
import pluginSecurity from 'eslint-plugin-security';
import eslintGlobals from './packages/app/.nuxt/.eslint.globals.mjs';
import eslintIgnores from './eslint.ignores.mjs';

export default createConfigForNuxt(
{
features: {
typescript: false
}
},
export default withNuxt(
pluginSecurity.configs.recommended,
eslintConfigPrettier,
eslintPluginPrettierRecommended,
eslintGlobals,
{
files: ['**/*.js', '**/*.vue'],
ignores: eslintIgnores,
Expand Down
Loading

0 comments on commit 7ddd50d

Please sign in to comment.