Truthy CMS(ReactJS 入门版)

Truthy CMS 的前端应用程序采用 ReactJS 和 Redux Saga 编写。该项目包括用户管理、角色管理、权限管理、电子邮件模块、账户设置、OTP、RBAC 支持、本地化等 UI 实现。『Truthy CMS's Frontend application written in ReactJS & Redux Saga. This project includes UI implementation of User Management, Role Management, Permission Management, Email Module, Account Settings, OTP, RBAC support, Localization, and many more.』

Github星跟踪图

View Live here

Table of Contents


Getting Started

This project was created to help developers by bootstrapping basic modules that need to be present while creating a standard CMS. The main motto of this project was to save precious time while developing CMS and focus more on the core part. This project is trying to follow the best possible standard to make it optimized and production-ready. Hope you like it. If you love it don't forget to share your experience.


Prerequisites

NodeJS
https://nodejs.org/en/


Available Scripts

npx truthy-react-cms project_name

This commands downloads the latest version of truthy-react-cms

In the project directory, you can run:

yarn start

Runs the app in the development mode.
Open http://localhost:3000 to view it in the browser.

Hot reload is supported on the development environment page will reload if you make edits.
You will also see any lint errors in the console.

yarn build

Builds the app for production to the build folder.
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.
Your app is ready to be deployed!

yarn lint

Lints all the files inside ./src and shows the result without fixing.

yarn lint:js:fix

Lints all the files inside ./src.


Setup

First, you need to clone the project

git clone https://github.com/gobeam/truthy-react-frontend.git

After cloning the project copy .env.sample and save it as .env

cp .env.sample .env

In the .env file, you have to provide the following fields

#environment type (development, production)
NODE_ENV=development

#frontend application URI
REACT_APP_URI=http://localhost:3000

#Backend API URI (setup from: https://github.com/gobeam/truthy)
REACT_APP_API_BASE_URI=http://localhost:7777

If you want to run locally

yarn start

If you want to use Docker to deploy it on production or development stage

docker build -t truthy-frontend .
docker run truthy-frontend -p 3000:80

File Structure

This project follows the following file structure:

app
├── app                  
│   └── assets                              * Assets that are imported into your components(images, custom SVG, etc).
│   └── common                              * Common helpers function, hooks, translation messages, and layouts
│   └── component                           * Components of the projects that are not the main views.
│       └── ...
│   └── containers                          * Components that are connected to the redux-saga and receive updates.
│       └── <domain container>
│           └── index.js
│           └── action.js
│           └── constants.js
│           └── Loadable.js
│           └── messages.js
│           └── reducer.js
│           └── saga.js
│           └── selector.js
│   └── helpers                             * Common Helper functions.
│   └── hooks                               * Feature to use state and other React functionalities without writing class.
│   └── i18n                                * Translation files.
│   └── reducers                            * Pure function that takes an action and the previous state of the application and returns the 
│   └── routes                              * Routes list.
│   └── scss                                * Scss files for the project.
│   └── services                            * Common services file.
│   └── store                               * The Redux action types in action-type.js, reducers, selectors, and main store in the 
│   └── utils                               * Common utils.
│   └── app.js                              * Main app component.
│   └── global-style.js                     * Global styles.
├── build                                   * Build files when `yarn build` is run.
├── internals
│   └── scripts                             * Scripts.
│   └── webpack                             * Webpack configuration.  
├── server                                  * Node server to run the application. 

Some important root files

.
├── .editorconfig                           * Coding styles (also by programming language).
├── .env                                    * Environment variables (env.production, env.local, env.uat, etc).
├── .eslintrc.json                          * ESLint configuration and rules.
├── .prettierrc                             * Formatting Prettier options.
├── Dockerfile                              * Docker file for prod environment.
├── Dockerfile.dev                          * Docker file for dev environment.

Application Security

Throttle

By default Throttle has been implemented on API endpoints in Truthy Backend API

Two Factor Authentication (2FA)

User Will have 2FA authentication option available to be turned on or off. For 2FA time-based one-time password is used. A time-based one-time password (TOTP) application automatically generates an authentication code that changes after a certain period of time. Applications like Authenticator, 1Password, Authy etc. can be used to generate TOTP. When you enable 2FA, you will be sent a QR code in your email which should be scanned from above mentioned application and TOTP will be generated by those applications.

Contributing

Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.
Please make sure to update tests as appropriate. - see CONTRIBUTING.md for details.
If you want to be featured in contributors list on our home page please add PR on https://github.com/gobeam/truthy-contributors to provide your details.


Sponsors


License

Released under the MIT License - see LICENSE.md for details.


Acknowledgement

主要指标

概览
名称与所有者gobeam/truthy-react-frontend
主编程语言JavaScript
编程语言 (语言数: 7)
平台
许可证MIT License
所有者活动
创建于2021-04-11 12:19:13
推送于2023-01-08 13:38:43
最后一次提交
发布数3
最新版本名称0.3.0 (发布于 )
第一版名称0.1.0 (发布于 )
用户参与
星数103
关注者数2
派生数31
提交数100
已启用问题?
问题数4
打开的问题数2
拉请求数8
打开的拉请求数0
关闭的拉请求数0
项目设置
已启用Wiki?
已存档?
是复刻?
已锁定?
是镜像?
是私有?