From e45aa7c597abe71210c5201292ed9f0e6a778a75 Mon Sep 17 00:00:00 2001 From: Nancy Date: Tue, 25 Mar 2025 00:48:11 +0530 Subject: [PATCH 1/2] added a new feature to newftext.html --- newtext.html | 1 + newtext.txt | 1 + 2 files changed, 2 insertions(+) create mode 100644 newtext.html create mode 100644 newtext.txt diff --git a/newtext.html b/newtext.html new file mode 100644 index 000000000..ca62ca3fb --- /dev/null +++ b/newtext.html @@ -0,0 +1 @@ +

hi welcome to our project

\ No newline at end of file diff --git a/newtext.txt b/newtext.txt new file mode 100644 index 000000000..70a4402c7 --- /dev/null +++ b/newtext.txt @@ -0,0 +1 @@ +

hi welvcome to our project

\ No newline at end of file From e7bc30e13ad62522058f03697b6bea3ba7c86105 Mon Sep 17 00:00:00 2001 From: Nancy Date: Tue, 25 Mar 2025 01:17:24 +0530 Subject: [PATCH 2/2] added .gitignore and README.md files --- .gitignore | 27 ++++++--------------------- README.md | 17 +++++++---------- 2 files changed, 13 insertions(+), 31 deletions(-) diff --git a/.gitignore b/.gitignore index 4d29575de..b0cd5c722 100644 --- a/.gitignore +++ b/.gitignore @@ -1,23 +1,8 @@ -# See https://help.github.com/articles/ignoring-files/ for more about ignoring files. +# Ignore log files +*.log -# dependencies -/node_modules -/.pnp -.pnp.js +# Ignore node_modules directory +node_modules/ -# testing -/coverage - -# production -/build - -# misc -.DS_Store -.env.local -.env.development.local -.env.test.local -.env.production.local - -npm-debug.log* -yarn-debug.log* -yarn-error.log* +# Ignore environment files +*.env diff --git a/README.md b/README.md index 8c009ec07..d06c8130d 100644 --- a/README.md +++ b/README.md @@ -1,15 +1,12 @@ -# Expense Tracker (React) +# My Awesome Project -This is a React version of the [vanilla JS Expense Tracker](https://github.com/bradtraversy/vanillawebprojects/tree/master/expense-tracker). It uses functional components with hooks and the context API +## Description +This project is a demonstration of Git and GitHub workflows, including the use of .gitignore and README.md files. -## Usage -``` -npm install - -# Run on http://localhost:3000 -npm start +## Installation Steps +1. Clone the repository: + ```sh + git clone https://github.com/Your-Username/My-Awesome-Project.git -# Build for prod -npm run build ```