Skip to content

Commit

Permalink
fixes - #34 added .gitignore and initialized npm
Browse files Browse the repository at this point in the history
  • Loading branch information
rishyym0927 committed Oct 1, 2024
1 parent b6cea15 commit e19ba0e
Show file tree
Hide file tree
Showing 2 changed files with 59 additions and 0 deletions.
48 changes: 48 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
# Node.js
node_modules/
npm-debug.log
yarn-debug.log
yarn-error.log

# Environment Variables
.env
.env.local
.env.*.local

# Build outputs
dist/
build/
out/

# Logs
logs/
*.log
pids/
*.pid
*.seed

# IDE and editor specific files
.vscode/
.idea/
*.swp
*.swo
*.sublime-project
*.sublime-workspace

# Operating System files
.DS_Store
Thumbs.db

# Temporary files
*.tmp
*.temp

# Coverage
coverage/
*.lcov

# Other files
*.tgz
*.gz
*.zip
*.tar
11 changes: 11 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
{
"name": "bobble-ai",
"version": "1.0.0",
"description": "<div align=\"center\"> <img style=\"display: block; margin-left: auto; margin-right: auto; width: 50%;\" src=\"images/Ambulance Tracker.png\"> </div>",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "",
"license": "ISC"
}

0 comments on commit e19ba0e

Please sign in to comment.