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
21 changes: 21 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
node_modules/
dist/
build/
coverage/
out/

.env
.env.*

.DS_Store
Thumbs.db

.idea/
.vscode/
*.swp
*.swo

npm-debug.log*
yarn-debug.log*
yarn-error.log*
pnpm-debug.log*
15 changes: 14 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1 +1,14 @@
# test-code
# test-code

This repository is intentionally minimal at the moment. It currently provides only a lightweight project scaffold so future work can add application code and tooling in a clean, deliberate way.

## Current files

- `README.md`: project overview and contributor notes.
- `.gitignore`: common ignores for a small JavaScript or static-web repository.

## Contributor guidance

- Keep early changes small and well-scoped.
- Add application code, dependencies, and build tooling only when there is a clear need.
- Document any new top-level files or directories in this README as the repository grows.