Skip to content

Latest commit

 

History

History
25 lines (19 loc) · 1.1 KB

README.md

File metadata and controls

25 lines (19 loc) · 1.1 KB

todo_sample_app

This is a simple todo app This project is in html, js and http as the server

How to clone and set your remotes properly

Learn more abote github remotes here

Assuming your github username is sistech here are the steps to set proper remotes:

  1. Fork the repository. Then locally on your terminal do the following:
  2. Clone it : git clone https://github.com/sistech/todo_sample_app then navigate to the sample app folder $ cd todo_sample_app
  3. Add the Tech sister repo as your upstream reomte -- $ git remote add upstream https://github.com/Tech-Sisters-Kenya/todo_sample_app

Essentials when branching and syncing branches

  • When working on a new task always work on a feature branch
  • Always pull from upsream main
  • Use interactive rebase on your feature branch
  • Push your feature branch to yor fork and make a pull request form there.

https://github.com/Tech-Sisters-Kenya/todo_sample_app

To run this app locally after cloning do

$ npm install $ npx http-server

You should be able to view the app on http://127.0.0.1:8080 or localhost:8080 from your browser