You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
![]() |
2 months ago | |
---|---|---|
assets | 2 months ago | |
README.md | 2 months ago | |
index.html | 2 months ago | |
package-lock.json | 2 months ago | |
package.json | 2 months ago | |
time.js | 2 months ago | |
time.test.js | 2 months ago |
README.md
Getting started
Note: There is an NPM script that runs an http live server to view the app but you can view the app with any http server of your choice
Prerequisites
- Node & NPM
- Git
Installation
- open up your terminal and navigate to the project directory
cd pomodoro
- run
npm install
to install the dependencies
Running locally
- run
npm start
to start the server - Open your browser and enter the url
localhost:8080
Contributing
1) Fork and Setup Repo
- Fork the repo
- Clone forked repo on your local machine
cd pomodoro
to go into the project rootgit remote add upstream https://github.com/anthonygedeon/pomodoro
to add original repo as an upstreamnpm install
to install the website's npm dependencies
2) Create a branch
git checkout master
from any folder in your localpomodoro
repositorygit pull upstream master
to ensure you have the latest main codegit checkout -b the-name-of-my-branch
(replacing the-name-of-my-branch with a suitable name) to create a branch
3) Push it
git add -A && git commit -m "My message"
(replacing My message with a commit message, such as Fix header logo on Android) to stage and commit your changes.git push my-fork-name the-name-of-my-branch
- Go to the
anthonygedeon/pomodoro
repo and you should see recently pushed branches, clicknew pull request
. - Follow GitHub's instructions.