Skip to content

Commit 9cde491

Browse files
committed
feat: implement basic model & router
1 parent 8566158 commit 9cde491

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

45 files changed

+19979
-0
lines changed

.babelrc

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
{
2+
"presets": [
3+
[
4+
"@babel/preset-env",
5+
{
6+
"targets": {
7+
"node": "current"
8+
}
9+
}
10+
]
11+
]
12+
}

.editorconfig

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
# top-most EditorConfig file
2+
root = true
3+
4+
# Unix-style newlines with a newline ending every file
5+
[*]
6+
end_of_line = lf
7+
insert_final_newline = true
8+
indent_style = space
9+
indent_size = 2
10+
11+
# Matches multiple files with brace expansion notation
12+
# Set default charset
13+
[*.{js}]
14+
charset = utf-8

.eslintignore

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
src/predefine.apidoc.js

.eslintrc

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
{
2+
"extends": [
3+
"airbnb-base",
4+
"plugin:prettier/recommended",
5+
"plugin:jsdoc/recommended"
6+
],
7+
"plugins": ["prettier", "jsdoc"],
8+
"rules": {
9+
"prettier/prettier": "error"
10+
}
11+
}

.gitignore

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
# Logs
2+
logs
3+
*.log
4+
5+
# Runtime
6+
pids
7+
*.pid
8+
*.seed
9+
10+
# Temporary
11+
.tmp
12+
.grunt
13+
14+
# Dependencies
15+
node_modules
16+
17+
# Coverage
18+
libcov
19+
coverage
20+
.nyc_output
21+
22+
# Docs

.npmignore

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
logs
2+
*.log
3+
pids
4+
*.pid
5+
*.seed
6+
.tmp
7+
.grunt
8+
node_modules
9+
libcov
10+
coverage
11+
.nyc_output
12+
test
13+
examples
14+
docs
15+
.travis.yml
16+
Gruntfile.js

.npmrc

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
registry = "https://registry.npmjs.com/"
2+
git-tag-version = false

.predefinerc

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"namespaces": ["Currency", "Unit", "Item", "Area"],
3+
"relations": {
4+
"unit": { "ref": "Predefine" }
5+
}
6+
}

.prettierignore

Whitespace-only changes.

.prettierrc

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"printWidth": 80,
3+
"singleQuote": true,
4+
"semi": true,
5+
"trailingComma": "es5"
6+
}

.travis.yml

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
language: node_js
2+
services:
3+
- mongodb
4+
- redis-server
5+
node_js:
6+
- node
7+
before_script:
8+
- redis-cli config set notify-keyspace-events Ex
9+
script:
10+
- commitlint-travis
11+
- npm test
12+
after_success: npm run coverage
13+

CODE_OF_CONDUCT.md

+76
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,76 @@
1+
# Contributor Covenant Code of Conduct
2+
3+
## Our Pledge
4+
5+
In the interest of fostering an open and welcoming environment, we as
6+
contributors and maintainers pledge to making participation in our project and
7+
our community a harassment-free experience for everyone, regardless of age, body
8+
size, disability, ethnicity, sex characteristics, gender identity and expression,
9+
level of experience, education, socio-economic status, nationality, personal
10+
appearance, race, religion, or sexual identity and orientation.
11+
12+
## Our Standards
13+
14+
Examples of behavior that contributes to creating a positive environment
15+
include:
16+
17+
* Using welcoming and inclusive language
18+
* Being respectful of differing viewpoints and experiences
19+
* Gracefully accepting constructive criticism
20+
* Focusing on what is best for the community
21+
* Showing empathy towards other community members
22+
23+
Examples of unacceptable behavior by participants include:
24+
25+
* The use of sexualized language or imagery and unwelcome sexual attention or
26+
advances
27+
* Trolling, insulting/derogatory comments, and personal or political attacks
28+
* Public or private harassment
29+
* Publishing others' private information, such as a physical or electronic
30+
address, without explicit permission
31+
* Other conduct which could reasonably be considered inappropriate in a
32+
professional setting
33+
34+
## Our Responsibilities
35+
36+
Project maintainers are responsible for clarifying the standards of acceptable
37+
behavior and are expected to take appropriate and fair corrective action in
38+
response to any instances of unacceptable behavior.
39+
40+
Project maintainers have the right and responsibility to remove, edit, or
41+
reject comments, commits, code, wiki edits, issues, and other contributions
42+
that are not aligned to this Code of Conduct, or to ban temporarily or
43+
permanently any contributor for other behaviors that they deem inappropriate,
44+
threatening, offensive, or harmful.
45+
46+
## Scope
47+
48+
This Code of Conduct applies both within project spaces and in public spaces
49+
when an individual is representing the project or its community. Examples of
50+
representing a project or community include using an official project e-mail
51+
address, posting via an official social media account, or acting as an appointed
52+
representative at an online or offline event. Representation of a project may be
53+
further defined and clarified by project maintainers.
54+
55+
## Enforcement
56+
57+
Instances of abusive, harassing, or otherwise unacceptable behavior may be
58+
reported by contacting the project team at lallyelias87@gmail.com. All
59+
complaints will be reviewed and investigated and will result in a response that
60+
is deemed necessary and appropriate to the circumstances. The project team is
61+
obligated to maintain confidentiality with regard to the reporter of an incident.
62+
Further details of specific enforcement policies may be posted separately.
63+
64+
Project maintainers who do not follow or enforce the Code of Conduct in good
65+
faith may face temporary or permanent repercussions as determined by other
66+
members of the project's leadership.
67+
68+
## Attribution
69+
70+
This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4,
71+
available at https://www.contributor-covenant.org/version/1/4/code-of-conduct.html
72+
73+
[homepage]: https://www.contributor-covenant.org
74+
75+
For answers to common questions about this code of conduct, see
76+
https://www.contributor-covenant.org/faq

CONTRIBUTING.md

+150
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,150 @@
1+
# Contributing
2+
3+
I'm really glad you're reading this, because we need volunteer developers to help this project come to fruition.
4+
5+
We love to receive contributions from our community — you! There are many ways to contribute, from writing tutorials or blog posts, improving the documentation, submitting bug reports and feature requests or writing code which can be incorporated into project itself.
6+
7+
Following these guidelines helps to communicate that you respect the time of the developers managing and developing this open source project. In return, they should reciprocate that respect in addressing your issue, assessing changes, and helping you finalize your pull requests.
8+
9+
These are mostly guidelines, not rules. Use your best judgment, and feel free to propose changes to this document in a pull request.
10+
11+
12+
## Code of Conduct
13+
14+
This project has adopted a Code of Conduct that we expect project participants to adhere to. Please read [the full text](https://github.com/codetanzania/ewea-case/blob/master/CODE_OF_CONDUCT.md) so that you can understand what actions will and will not be tolerated.
15+
16+
17+
## Open Development
18+
19+
All work happens directly on [GitHub](https://github.com/codetanzania/ewea-case). Both core team members and external contributors send pull requests which go through the same review process.
20+
21+
22+
## Branch Organization
23+
24+
We will do our best to keep the [`master` branch](https://github.com/codetanzania/ewea-case/tree/master) in good shape, with tests passing at all times.
25+
26+
If you send a pull request, please do it against the [`master` branch](https://github.com/codetanzania/ewea-case/tree/master).
27+
28+
29+
## Semantic Versioning
30+
31+
This project follows [semantic versioning](http://semver.org/). We release patch versions for bugfixes, minor versions for new features, and major versions for any breaking changes.
32+
33+
34+
## Where to Find Known Issues
35+
36+
We are using [GitHub Issues](https://github.com/codetanzania/ewea-case/issues) for all issues. Before filing a new task, try to make sure your problem doesn't already exist.
37+
38+
39+
## Proposing a Change
40+
41+
If you intend to change the public API, or make any non-trivial changes to the implementation, we recommend [filing an issue](https://github.com/codetanzania/ewea-case/issues/new). This lets us reach an agreement on your proposal before you put significant effort into it.
42+
43+
If you're only fixing a bug, it's fine to submit a pull request right away but we still recommend to file an issue detailing what you're fixing. This is helpful in case we don't accept that specific fix but want to keep track of the issue.
44+
45+
46+
## Your First Pull Request
47+
48+
Working on your first Pull Request? You can learn how from this free video series:
49+
50+
**[How to Contribute to an Open Source Project on GitHub](https://egghead.io/series/how-to-contribute-to-an-open-source-project-on-github)**
51+
52+
If you decide to fix an issue, please be sure to check the comment thread in case somebody is already working on a fix. If nobody is working on it at the moment, please leave a comment stating that you intend to work on it so other people don't accidentally duplicate your effort.
53+
54+
If somebody claims an issue but doesn't follow up for more than two weeks, it's fine to take it over but you should still leave a comment.
55+
56+
57+
## Sending a Pull Request
58+
59+
The core team is monitoring for pull requests. We will review your pull request and either merge it, request changes to it, or close it with an explanation. We'll do our best to provide updates and feedback throughout the process.
60+
61+
62+
## Style Guide
63+
64+
Look at [Airbnb's Style Guide](https://github.com/airbnb/javascript) will guide you in the right direction.
65+
66+
## Git Commit Guidelines
67+
68+
We have very precise rules over how our git commit messages can be formatted. This leads to **more readable messages** that are easy to follow when looking through the **project history**. But also, we use the git commit messages to **generate change log**.
69+
70+
The commit message formatting can be added using a typical git workflow or through the use of a CLI wizard ([Commitizen](https://github.com/commitizen/cz-cli)). To use the wizard, run `npm run cmt` in your terminal after staging your changes in git.
71+
72+
### Commit Message Format
73+
Each commit message consists of a **header**, a **body** and a **footer**. The header has a special format that includes a **type**, a **scope** and a **subject**:
74+
75+
```
76+
<type>(<scope>): <subject>
77+
<BLANK LINE>
78+
<body>
79+
<BLANK LINE>
80+
<footer>
81+
```
82+
83+
The **header** is mandatory and the **scope** of the header is optional.
84+
85+
Any line of the commit message cannot be longer 100 characters!. This allows the message to be easier to read on GitHub as well as in various git tools.
86+
87+
### Revert
88+
If the commit reverts a previous commit, it should begin with `revert: `, followed by the header of the reverted commit. In the body it should say: `This reverts commit <hash>.`, where the hash is the SHA of the commit being reverted. A commit with this format is automatically created by the [`git revert`](https://git-scm.com/docs/git-revert) command.
89+
90+
### Type
91+
Must be one of the following:
92+
93+
* **feat**: A new feature
94+
* **fix**: A bug fix
95+
* **docs**: Documentation only changes
96+
* **style**: Changes that do not affect the meaning of the code (white-space, formatting, missing semi-colons, etc)
97+
* **refactor**: A code change that neither fixes a bug nor adds a feature
98+
* **perf**: A code change that improves performance
99+
* **test**: Adding missing or correcting existing tests
100+
* **chore**: Changes to the build process or auxiliary tools and libraries such as documentation generation
101+
102+
### Scope
103+
The scope could be anything specifying place of the commit change. You can use `*` when the change affects more than a single scope.
104+
105+
### Subject
106+
The subject contains succinct description of the change:
107+
108+
* use the imperative, present tense: "change" not "changed" nor "changes"
109+
* don't capitalize first letter
110+
* no dot (.) at the end
111+
112+
### Body
113+
Just as in the **subject**, use the imperative, present tense: "change" not "changed" nor "changes". The body should include the motivation for the change and contrast this with previous behavior.
114+
115+
### Footer
116+
The footer should contain any information about **Breaking Changes** and is also the place to [reference GitHub issues that this commit closes](https://help.github.com/articles/closing-issues-using-keywords/).
117+
118+
**Breaking Changes** should start with the word `BREAKING CHANGE:` with a space or two newlines. The rest of the commit message is then used for this.
119+
120+
121+
## License
122+
123+
By contributing, you agree that your contributions will be licensed under its MIT license.
124+
125+
126+
## Developer's Certificate of Origin 1.1
127+
128+
By making a contribution to this project, I certify that:
129+
130+
* (a) The contribution was created in whole or in part by me and I
131+
have the right to submit it under the open source license
132+
indicated in the file; or
133+
134+
* (b) The contribution is based upon previous work that, to the best
135+
of my knowledge, is covered under an appropriate open source
136+
license and I have the right under that license to submit that
137+
work with modifications, whether created in whole or in part
138+
by me, under the same open source license (unless I am
139+
permitted to submit under a different license), as indicated
140+
in the file; or
141+
142+
* (c) The contribution was provided directly to me by some other
143+
person who certified (a), (b) or (c) and I have not modified
144+
it.
145+
146+
* (d) I understand and agree that this project and the contribution
147+
are public and that a record of the contribution (including all
148+
personal information I submit with it, including my sign-off) is
149+
maintained indefinitely and may be redistributed consistent with
150+
this project or the open source license(s) involved.

LICENSE

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
The MIT License (MIT)
2+
3+
Copyright (c) CodeTanzania & Contributors
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the “Software”), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
6+
7+
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
8+
9+
THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

0 commit comments

Comments
 (0)