-
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.
- Loading branch information
1 parent
8c20d29
commit 552eac7
Showing
7 changed files
with
249 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,8 @@ | ||
# Project Software Design and Architecture | ||
|
||
- [Budget](./budget.md) | ||
- [Methodologies](./methodologies.md) | ||
- [Project Workflow](./project-workflow.md) | ||
- [Stack](./stack.md) | ||
- [Structure](./structure.md) | ||
- [API](./api.md) |
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,38 @@ | ||
[Index](./) | ||
|
||
# API | ||
|
||
We use [npm scripts](https://docs.npmjs.com/misc/scripts) as API to our project. | ||
|
||
## Installation | ||
|
||
```bash | ||
$ npm install | ||
``` | ||
|
||
## Workflow commands | ||
|
||
| Command | Description | | ||
| :------ | :------------- | | ||
| `npm run start` | Start development server | | ||
| `npm run start:watch` | Start server with watcher | | ||
| `npm run start:tunnel` | Start development server with [ngrok](https://ngrok.com) tunnel | | ||
| `npm run start:production` | Start production server | | ||
| `npm run build` | Build development assets | | ||
| `npm run build:production` | Build production assets | | ||
| `npm run build-server:watch` | Build server code with watcher | | ||
| `npm run build-js:watch` | Start JS builder with watcher | | ||
| `npm run build-css:watch` | Start SASS builder with watcher | | ||
| `npm run test` | Run all tests | | ||
| `npm run docs` | Generate all documentations | | ||
|
||
## System variables | ||
|
||
- `NODE_PATH` - Folder to add in the node `require('...dependency...')` resolver, which is important to define on the workflow commands because many components/modules in server and client side code use them | ||
- `NODE_ENV` - Node environment | ||
- `development` (default) | ||
- `test` | ||
- `production` | ||
- `PORT` - Server port | ||
- `ENABLE_TUNNEL` - Enable tunnel by [ngrok](https://ngrok.com) on server start | ||
- `NODE_CI` or `TRAVIS` - Define [Continuous Integration](https://en.wikipedia.org/wiki/Continuous_integration) environment which will make the tests _single-run_ |
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,24 @@ | ||
[Index](./) | ||
|
||
# Budget | ||
|
||
How we decide some project features based on people, time, money, and other investment factors, along with more technical factors such as business, demography, concurrency, among others. | ||
|
||
- Support | ||
- Browsers with at least HTML5, CSS2.1 and ECMAScript5 | ||
- IE10+ | ||
- Mobile devices with minimum viewport width of 320 pixels | ||
- Accessibility | ||
- All public facing content should be SEO friendly | ||
- All public facing content should be crawlable at page load | ||
- Available in languages: English | ||
- Performance | ||
- Public pages should weight less than 3MB on initial load | ||
- Public pages should load first content in less than 2 seconds and application in less than 5 seconds through _Regular 4G_ connection | ||
- Optimize and minimize assets | ||
- Enable compression and cache for eligible resources types | ||
- Data endpoints should disable cache | ||
- Use CDNs for resources when available | ||
- Security | ||
- HTTPS enabled | ||
- Most components, modules and APIs should be tested and documented |
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,54 @@ | ||
[Index](./) | ||
|
||
# Methodologies | ||
|
||
- [Unix philosophy](https://en.wikipedia.org/wiki/Unix_philosophy) | ||
- [Functional programming](https://en.wikipedia.org/wiki/Functional_programming) | ||
- [Behavior-driven development](https://en.wikipedia.org/wiki/Behavior-driven_development) | ||
- [Udacity Git Styleguide](http://udacity.github.io/git-styleguide) | ||
- [FIRST](https://addyosmani.com/first) | ||
- [CommonJS](http://commonjs.org) | ||
- [Atomic design](http://atomicdesign.bradfrost.com) | ||
- [BEM](https://en.bem.info) | ||
- [Mobile First](http://zurb.com/word/mobile-first) | ||
- [JS/React Style Guide](https://github.com/airbnb/javascript) | ||
- [CSS/SASS Style Guide](https://github.com/airbnb/css) | ||
|
||
_Some methodologies apply in certain cases or partly._ | ||
|
||
## General rules and conventions | ||
|
||
- Codification UTF-8 | ||
- 2 space indentation | ||
- File names, lowercase, words split by dashes | ||
- Testing files names should end with `.test` before extensions | ||
- The main file in a component/module should be called `index` | ||
- No more than 80 characters per line of code | ||
- Modules should not be more than around 100 lines of code (without docs) (recommendation) | ||
- Modules dependencies must be placed at the beginning | ||
- Modules exports should be defined at the end (when eligible) | ||
- CSS animations/transitions over JS animations | ||
- Font icons over CSS image sprites | ||
- JavaScript variables and function names, camel case, avoid single letters | ||
- React components folders are capitalized and the `index.js` file is the exported | ||
- Classes folders are capitalized and `index.js` file is the exported | ||
|
||
## Design | ||
|
||
- **General**: | ||
- Use `box-sizing` with `border-box`. | ||
- Use `rem` for font sizes. Pixels for everything else. | ||
- Every element has a single, unique, component-scoped class. | ||
- **Layouts**: | ||
- A layout is only concerned with its children horizontal, vertical alignment and spacing. | ||
- Layouts can have margin bottom or/and margin right to separate. | ||
- **Components**: | ||
- A component never imposes element styles on its children. Component styles only target the elements inside. | ||
- The component itself never has floats, widths, heights or margins. It should not have background. | ||
- There can be components that can behave as elements. | ||
- **Elements**: | ||
- All styles are applied directly to that selector, modified only by contexts and themes. | ||
- Themes and other data attributes never force changes in appearance; they are always a context that layouts, components, and elements can subscribe to. | ||
- No element will have top or left margins, they can have right or bottom margins and all last children will have their margins cleared. The first element touches the top of its component. | ||
|
||
_Some rules from [Frontend Architecture for design systems](http://shop.oreilly.com/product/0636920040156.do)._ |
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,13 @@ | ||
[Index](./) | ||
|
||
# Project workflow | ||
|
||
- By Iteration of _(not necessarily in this order)_: | ||
- Requirements and specifications | ||
- Architecture and software design | ||
- Chores: structure, tools and processes automation | ||
- By Iteration of _(not necessarily in this order)_: | ||
- User interface design | ||
- Components and functionalities | ||
- Testing | ||
- Documentation |
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,45 @@ | ||
[Index](./) | ||
|
||
# Stack | ||
|
||
## Environment tools | ||
|
||
- [Unix shell](https://en.wikipedia.org/wiki/Unix_shell) | ||
- [oh-my-zsh](https://github.com/robbyrussell/oh-my-zsh) | ||
- [Git](https://git-scm.com) | ||
- [Atom](http://atom.io) | ||
- [editorconfig](https://atom.io/packages/editorconfig) | ||
- [linter](https://atom.io/packages/linter) plugin [eslint](https://atom.io/packages/linter-eslint) | ||
- [Chrome Dev Tools](https://developers.google.com/web/tools/chrome-devtools) | ||
- [React Dev Tools](https://chrome.google.com/webstore/detail/react-developer-tools/fmkadmapgofadopljbjfkapdkoienihi) | ||
|
||
## Platforms | ||
|
||
- [Node](http://nodejs.org) v6 LTS | ||
- [MongoDB](http://mongodb.org) v3+ | ||
- Ever green browsers | ||
|
||
## Languages | ||
|
||
- [ES2015](https://en.wikipedia.org/wiki/ECMAScript) | ||
- [JSX](https://jsx.github.io) | ||
- [CSS3](https://developer.mozilla.org/en/docs/Web/CSS/CSS3) | ||
- [SASS](http://sass-lang.com) | ||
|
||
## Tools | ||
|
||
- [Express](http://expressjs.com) - Server | ||
- [Mongoose](http://mongoosejs.com) - Database object modeling | ||
- [React](https://facebook.github.io/react/) - JS view library | ||
- [Redux](http://redux.js.org) - Predictable state container for JS apps | ||
- [Immutable](https://facebook.github.io/immutable-js/) - Immutable collections for JS | ||
- [jQuery](http://jquery.com) - General JS library | ||
|
||
## Tasks and automation | ||
|
||
- [Babel](http://babeljs.io) - ES2015 transpiler to ES5 | ||
- [Gulp](http://gulpjs.com) - Tasks runner | ||
- [Webpack](http://webpack.github.io/) - JS module manager | ||
- [Mocha](http://mochajs.org) - Test runner in node.js | ||
- [Karma](http://karma-runner.github.io) - Test runner in browser | ||
- [React StyleGuide](https://github.com/sapegin/react-styleguidist) - React style guide generator |
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,67 @@ | ||
[Index](./) | ||
|
||
# Structure | ||
|
||
Configuration in client and server sides are stored in their settings module respectively by environment. | ||
|
||
Source code is located at `src` by client, server and universally. | ||
|
||
We isolate components/modules functionality, design, tests and docs in their folders and resources at distribution folder `dist/[RESOURCE]/`. | ||
|
||
Client general code is located at `src/client/core`. | ||
|
||
File structure: | ||
|
||
- `docs/` - Documentation | ||
- `spec/` - Specification | ||
- `design/` - UI/UX designs | ||
- `architecture/` - Software design and architecture | ||
- `styleguide/` - Components style guide | ||
- `api/` - Server API docs | ||
- *`user/` - User documentation* | ||
- `src/` | ||
- `client/` | ||
- `settings/` - Settings by environment | ||
- `components/` - React static components | ||
- `core/` | ||
- `index.js` | ||
- `core.scss` | ||
- *`data/` - Server persistence utils* | ||
- *`tools/`* | ||
- `[APP]/` | ||
- `containers/` - React container components | ||
- *`store/`* | ||
- *`actions/`* | ||
- *`reducers/`* | ||
- *`selectors/`* | ||
- `index.js` - Application client entry point | ||
- `[APP].scss` | ||
- `server/` | ||
- `settings/` | ||
- `models/` | ||
- `views/` | ||
- `api/` | ||
- `pages/` | ||
- *`tools/`* | ||
- `index.js` | ||
- `shared/` | ||
- *`tools/`* | ||
- *`i18n/`* | ||
- `test/` - Testing setups and suites | ||
- *`[TYPE]/`* | ||
- `public/` - Distribution folder for assets and built client code | ||
- `css/` | ||
- `js/` | ||
- *`img/`* | ||
- *`fonts/`* | ||
- *`files/` - Dynamic files by users* | ||
- *`audio/`* | ||
- *`video/`* | ||
- `bundle/` - Server bundled code | ||
- *`static_components/` - Client static libraries* | ||
- *`setup/` - Environment project setup* | ||
- *`tasks/` - Automation tasks* | ||
|
||
_Optional folders in cursive._ | ||
|
||
_Dynamic names are marked as [NAME]._ |