Skip to content

Commit b5c24e5

Browse files
authored
Merge pull request #24 from mcserversoft/dev_svelte
SvelteKit/Tailwind rewrite
2 parents 474fa9b + 1ea178d commit b5c24e5

File tree

244 files changed

+8179
-99223
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

244 files changed

+8179
-99223
lines changed

.eslintignore

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
.DS_Store
2+
node_modules
3+
/build
4+
/.svelte-kit
5+
/package
6+
.env
7+
.env.*
8+
!.env.example
9+
10+
# Ignore files for PNPM, NPM and YARN
11+
pnpm-lock.yaml
12+
package-lock.json
13+
yarn.lock

.eslintrc.cjs

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
module.exports = {
2+
root: true,
3+
parser: '@typescript-eslint/parser',
4+
extends: ['eslint:recommended', 'plugin:@typescript-eslint/recommended'],
5+
plugins: ['svelte3', '@typescript-eslint'],
6+
ignorePatterns: ['*.cjs'],
7+
overrides: [{ files: ['*.svelte'], processor: 'svelte3/svelte3' }],
8+
settings: {
9+
'svelte3/typescript': () => require('typescript')
10+
},
11+
parserOptions: {
12+
sourceType: 'module',
13+
ecmaVersion: 2020
14+
},
15+
env: {
16+
browser: true,
17+
es2017: true,
18+
node: true
19+
}
20+
};

.gitignore

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,14 @@
1-
index-test.html
2-
index-original.html
1+
.DS_Store
2+
node_modules
3+
/build
4+
/.svelte-kit
5+
/package
6+
.env
7+
.env.*
8+
!.env.example
9+
.vercel
10+
.output
11+
# custom
312
mcss-panel.zip
413
panel.zip
5-
.idea
614
.save

.npmrc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
engine-strict=true

README.md

Lines changed: 14 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,22 @@
11
[![Discord](https://img.shields.io/discord/335560186930659328?label=Discord)](https://mcserversoft.com/discord)
2-
[![Maintained](https://img.shields.io/maintenance/yes/2021)](https://github.com/mcserversoft/RemotePanel)
3-
[![Better Uptime Badge](https://betteruptime.com/status-badges/v1/monitor/9f9t.svg)](https://betteruptime.com/?utm_source=status_badge)
2+
[![Maintained](https://img.shields.io/maintenance/yes/2022)](https://github.com/mcserversoft/RemotePanel)
43

54
# MCSS Remote Panel
65

7-
> DISCLAIMER: This is an early version of the project and may not be stable.
8-
96
This repository contains the code that is used for the remote panel. Feel free to [report issues](https://github.com/stefmmm/MCSS-Panel/issues), make [pull requests](https://github.com/mcserversoft/RemotePanel/pulls), all is appreciated!
107

118
Join our [discord](https://mcserversoft.com/discord) for a chat!
129

10+
11+
## Developing
12+
13+
Once you've cloned this project and installed dependencies with `npm install`, start a development server like so:
14+
15+
```bash
16+
npm run dev
17+
18+
# or start the server and open the app in a new browser tab
19+
npm run dev -- --open
20+
```
21+
22+
This was built with [SvelteKit](https://kit.svelte.dev/) and [Tailwind CSS ](https://tailwindcss.com).

assets/PWA/icon-128x128.png

-4.01 KB
Binary file not shown.

assets/PWA/icon-144x144.png

-6 KB
Binary file not shown.

assets/PWA/icon-152x152.png

-6.45 KB
Binary file not shown.

assets/PWA/icon-192x192.png

-9.02 KB
Binary file not shown.

assets/PWA/icon-384x384.png

-12.9 KB
Binary file not shown.

0 commit comments

Comments
 (0)