Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 16 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
node_modules/
dist/
build/
coverage/

.env
.env.*
!.env.example

.DS_Store
Thumbs.db

.idea/
.vscode/
*.swp
*.swo
16 changes: 15 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1 +1,15 @@
# test-code
# test-code

This repository is currently a minimal scaffold for a small JavaScript or static-web project. It does not include application code, dependencies, or build tooling yet.

## Current Files

- `README.md`: project status and contributor notes
- `.gitignore`: common local, build, editor, and OS exclusions

## Contributor Guidance

- Keep new additions small and easy to review.
- Add documentation alongside any new source files or tooling.
- Avoid committing generated output, secrets, local environment files, or editor-specific files.
- Introduce build configuration or dependencies only when the repository has a clear implementation need.