Contributing
Install the development environment
apt-get install git curl yarn
# or
brew install git curl yarnnode & npm & yarn
curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.35.2/install.sh | bash
nvm install 12
nvm use 12Get the project
git clone git@github.com:teamstarter/node-jobs.git
cd node-jobs
yarn
yarn startBe able to run bin files from the local node_modules folder
vim ~/.bashrc
#Add at the end of the file:
alias npm-exec='PATH=$(npm bin):$PATH'
npm-exec
:wq #Then save and quit
source ~/.bashrcTest the migration script locally
Start a test server using the test database migrated previously
Running the test
Debugging a specific test
Last updated
Was this helpful?