-
Notifications
You must be signed in to change notification settings - Fork 8
Contribution guide
Vivek Pandey edited this page Feb 14, 2018
·
3 revisions
Welcome, we are happy to see you here. We suggest you to read all guides before contributing.
You just need to be aware of using below things
- Node
- ExpressJs
- AJAX
- Mocha
- Chai
- Supertest
Ludo/
├─ public/
│ ├─ css/
│ ├─ js/
| ├─ img/
│ └─ *.html
├─ src/
│ ├─ handlers/
│ ├─ models/
│ └─ lib/
├─ test/
│ ├─ libTest/
│ ├─ integration/
│ └─ unitTest/
├─ templates/
├─ logs/
│ └─ *.log
├─ .gitignore
├─ .eslintrc
├─ README.md
├─ .editorconfig
├─ package.json
├─ server.js
└─ pre-commit.sh
-
clone the repository
https://github.com/STEP-tw/ludo-dvamps.git
-
run
sh bin/setup.sh
command on your terminal.
After preparing development environment, select a story that you want to work on and assign it to yourself.
As a pair follow TDD
, write tests to cover every line of code you added.