caicloud / web-template-project

A template for starting new web project at Caicloud

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Table of Contents generated with DocToc

Web Template Project

About the project

The Web Template Project is a template for starting new web projects at Caicloud.

This Template

  • is a SPA with React and Node.js Project using TypeScript
  • uses Less as preprocessor
  • testing with Jest and Enzyme
  • uses webpack as module bundler

Status

The template project is in alpha status.

TODO

  • lint
  • git hooks
  • tests

See also

Getting started

Install

yarn

Run dev-server

yarn watch

By default, webpack-dev-server listens to the m12n.port in package.json

Build image

TBD.

Run container

docker run -p <port>:3000 cargo.dev.caicloud.xyz/release/x-web:<VERSION> 

port MUST be one of endpoint-ports of modularize-web.

Layout

├── .github
│   ├── ISSUE_TEMPLATE.md
│   └── PULL_REQUEST_TEMPLATE.md
├── .gitignore
├── CHANGELOG.md
├── Makefile
├── OWNERS
├── README.md
├── build
│   └── x-web
│       └── Dockerfile
├── docs
├── package.json
├── release
│   └── x-web.yaml
├── client
│   ├── components
│   ├── menus
│   └── routes
├── server
├── scripts
│   └── read_cpus_available.sh
└── yarn.lock

A brief description of the layout:

  • .github has two template files for creating PR and issue. Please see the files for more details.
  • .gitignore varies per project, but all projects need to ignore node_modules directory.
  • CHANGELOG.md contains auto-generated changelog information.
  • Makefile is used to build the project. You need to tweak the variables based on your project.
  • OWNERS contains owners of the project.
  • README.md is a detailed description of the project.
  • build contains scripts, yaml files, dockerfiles, etc, to build and package the project.
  • docs for project documentations.
  • release chart for production deployment.
  • scripts shell scripts for extra works
  • client for client side codes.
  • server for server side codes, if any.

About

A template for starting new web project at Caicloud


Languages

Language:JavaScript 48.1%Language:Makefile 27.5%Language:TypeScript 18.7%Language:Shell 3.1%Language:Dockerfile 2.7%