Commit 3ab8d698 authored by Chris Molozian's avatar Chris Molozian
Browse files

Update ui project build system and libraries.

parent 625759a5
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -127,7 +127,7 @@ To build the codebase and generate all sources use these steps.

    ```shell
    cd console/ui
    yarn build
    yarn run build
    cd ../../
    ```

console/ui/.browserslistrc

deleted100644 → 0
+0 −3
Original line number Diff line number Diff line
> 1%
last 2 versions
not ie <= 8
+29 −56
Original line number Diff line number Diff line
/build
/.pnp
.pnp.js

# Created by https://www.gitignore.io/api/node,macos,linux,windows,sublimetext,intellij+all,webstorm+all,visualstudiocode
.env.local
.env.development.local
.env.test.local
.env.production.local

# Created by https://www.gitignore.io/api/node,macos,linux,windows,sublimetext,intellij+all
# Edit at https://www.gitignore.io/?templates=node,macos,linux,windows,sublimetext,intellij+all

### Intellij+all ###
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and WebStorm
@@ -12,6 +21,9 @@
.idea/**/dictionaries
.idea/**/shelf

# Generated files
.idea/**/contentModel.xml

# Sensitive or high-churn files
.idea/**/dataSources/
.idea/**/dataSources.ids
@@ -63,6 +75,9 @@ fabric.properties
# Editor-based Rest Client
.idea/httpRequests

# Android studio 3.1+ serialized cache file
.idea/caches/build_file_checksums.ser

### Intellij+all Patch ###
# Ignores the whole .idea folder and all .iml files
# See https://github.com/joeblau/gitignore.io/issues/186 and https://github.com/joeblau/gitignore.io/issues/360
@@ -76,6 +91,9 @@ modules.xml
.idea/misc.xml
*.ipr

# Sonarlint plugin
 .idea/sonarlint

### Linux ###
*~

@@ -142,7 +160,7 @@ coverage
# nyc test coverage
.nyc_output

# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)
.grunt

# Bower dependency directory (https://bower.io/)
@@ -178,6 +196,7 @@ typings/

# dotenv environment variables file
.env
.env.test

# parcel-bundler cache (https://parceljs.org/)
.cache
@@ -192,7 +211,13 @@ typings/
.vuepress/dist

# Serverless directories
.serverless
.serverless/

# FuseBox cache
.fusebox/

# DynamoDB Local files
.dynamodb/

### SublimeText ###
# Cache files for Sublime Text
@@ -226,57 +251,6 @@ bh_unicode_properties.cache
# https://packagecontrol.io/packages/sublime-github
GitHub.sublime-settings

### VisualStudioCode ###
.vscode/*
!.vscode/settings.json
!.vscode/tasks.json
!.vscode/launch.json
!.vscode/extensions.json

### WebStorm+all ###
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and WebStorm
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839

# User-specific stuff

# Sensitive or high-churn files

# Gradle

# Gradle and Maven with auto-import
# When using Gradle or Maven with auto-import, you should exclude module files,
# since they will be recreated, and may cause churn.  Uncomment if using
# auto-import.
# .idea/modules.xml
# .idea/*.iml
# .idea/modules

# CMake

# Mongo Explorer plugin

# File-based project format

# IntelliJ

# mpeltonen/sbt-idea plugin

# JIRA plugin

# Cursive Clojure plugin

# Crashlytics plugin (for Android Studio and IntelliJ)

# Editor-based Rest Client

### WebStorm+all Patch ###
# Ignores the whole .idea folder and all .iml files
# See https://github.com/joeblau/gitignore.io/issues/186 and https://github.com/joeblau/gitignore.io/issues/360


# Reason: https://github.com/joeblau/gitignore.io/issues/186#issuecomment-249601023


### Windows ###
# Windows thumbnail cache files
Thumbs.db
@@ -302,5 +276,4 @@ $RECYCLE.BIN/
# Windows shortcuts
*.lnk


# End of https://www.gitignore.io/api/node,macos,linux,windows,sublimetext,intellij+all,webstorm+all,visualstudiocode
# End of https://www.gitignore.io/api/node,macos,linux,windows,sublimetext,intellij+all

console/ui/.postcssrc.js

deleted100644 → 0
+0 −5
Original line number Diff line number Diff line
module.exports = {
  plugins: {
    autoprefixer: {}
  }
}

console/ui/README.md

0 → 100644
+25 −0
Original line number Diff line number Diff line
Developer Console
=================

> The builtin developer UI for Nakama server.

The Developer Console helps developers and studios manage app state, users, storage engine objects, and view active server configuration. All privacy related actions like GDPR export and delete can be initiated from the UI.

The same API used by the dashboard can be used programmatically as an adminstrative REST API.

## Contribute

The project is built with React, React-Router, Redux, and Rbx.

The development roadmap is managed as GitHub issues and pull requests are welcome. Look for issues tagged "console" for existing discussions. If you're interested to enhance the code please open an issue to discuss the changes or drop in and discuss it in the [community chat](https://gitter.im/heroiclabs/nakama).

### Builds

You can start the app locally with `yarn start` in development mode. Visit [http://localhost:3000](http://localhost:3000) to view it in the browser.

To generate a production build use `yarn run build`. It correctly bundles React in production mode and optimizes the build for the best performance.
The build is minified and the filenames include the hashes.

### Special Thanks

Thanks to Devin Fee (@dfee) for the excellent [rbx](https://github.com/dfee/rbx) library.
Loading