-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Import project from CubbyServer admin folder (#1)
- Loading branch information
Showing
13 changed files
with
4,557 additions
and
0 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
module.exports = { | ||
extends: "next/core-web-vitals", | ||
}; |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
# Generated by Next.js | ||
# Node related files | ||
|
||
# dependencies | ||
node_modules/ | ||
.pnp | ||
.pnp.js | ||
|
||
# testing | ||
coverage/ | ||
|
||
# next.js | ||
.next/ | ||
out/ | ||
|
||
# production | ||
build/ | ||
|
||
# misc | ||
.DS_Store | ||
*.pem | ||
|
||
# debug | ||
npm-debug.log* | ||
yarn-debug.log* | ||
yarn-error.log* | ||
|
||
# local env files | ||
.env.local | ||
.env.development.local | ||
.env.test.local | ||
.env.production.local | ||
|
||
# vercel | ||
.vercel | ||
|
||
# IDE related files | ||
# IntelliJ based IDE files, vscode files | ||
.idea/ | ||
.vscode/ |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
# CubbyAdmin | ||
|
||
<img src="./public/logo.png" width=256 height=256 /> | ||
|
||
[![License](https://img.shields.io/badge/Licence-GPLv3-blue.svg)](https://github.com/utilForever/Cubby/blob/main/LICENSE) | ||
|
||
CubbyAdmin is a voxel-based MMORPG admin web page using Next.js. | ||
|
||
## Key Features | ||
|
||
TBA | ||
|
||
## Quick Start | ||
|
||
TBA | ||
|
||
## Documentation | ||
|
||
TBA | ||
|
||
## How To Contribute | ||
|
||
Contributions are always welcome, either reporting issues/bugs or forking the repository and then issuing pull requests when you have completed some additional coding that you feel will be beneficial to the main project. If you are interested in contributing in a more dedicated capacity, then please contact me. | ||
|
||
## Contact | ||
|
||
You can contact me via e-mail (utilForever at gmail.com). I am always happy to answer questions or help with any issues you might have, and please be sure to share any additional work or your creations with me, I love seeing what other people are making. | ||
|
||
## License | ||
|
||
<img align="right" src="http://opensource.org/trademarks/opensource/OSI-Approved-License-100x137.png"> | ||
|
||
The class is licensed under the [GNU General Public License v3.0 License](http://opensource.org/licenses/MIT): | ||
|
||
Copyright © 2021 Cubby Team | ||
|
||
* [Chris Ohk](https://github.com/utilForever) | ||
* [Seungoh Han](https://github.com/h5jam) | ||
* [Jaeyong Sung](https://github.com/buttercrab) | ||
* [Seungbin Oh](https://github.com/sboh1214) | ||
|
||
CubbyAdmin is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. CubbyServer is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
/// <reference types="next" /> | ||
/// <reference types="next/types/global" /> | ||
/// <reference types="next/image-types/global" /> | ||
|
||
// NOTE: This file should not be edited | ||
// see https://nextjs.org/docs/basic-features/typescript for more information. |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
/** @type {import('next').NextConfig} */ | ||
module.exports = { | ||
reactStrictMode: true, | ||
} |
Oops, something went wrong.