Skip to content

Commit

Permalink
Import project from CubbyServer admin folder (#1)
Browse files Browse the repository at this point in the history
  • Loading branch information
sboh1214 authored Sep 2, 2021
1 parent 744890c commit 719c961
Show file tree
Hide file tree
Showing 13 changed files with 4,557 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .eslintrc.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
module.exports = {
extends: "next/core-web-vitals",
};
40 changes: 40 additions & 0 deletions .gitignore
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/
42 changes: 42 additions & 0 deletions README.md
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 &copy; 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.
6 changes: 6 additions & 0 deletions next-env.d.ts
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.
4 changes: 4 additions & 0 deletions next.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
/** @type {import('next').NextConfig} */
module.exports = {
reactStrictMode: true,
}
Loading

0 comments on commit 719c961

Please sign in to comment.