forked from mirrulations/CIWebTest
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGraph
More file actions
28 lines (27 loc) · 1.36 KB
/
Graph
File metadata and controls
28 lines (27 loc) · 1.36 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
My-Fork/
├── .github/
│ └── workflows/
│ └── ci.yml # GitHub Actions workflow to run tests and linters
├── api/
│ ├── src/
│ │ ├── app.js # Main Express app
│ │ └── routes/
│ │ └── search.js # Search endpoint implementation
│ ├── tests/
│ │ └── search.test.js # Unit tests for the search API
│ ├── package.json # API dependencies and scripts (e.g., test, lint)
│ ├── .eslintrc.json # Linter configuration for the API
│ └── README.md # API-specific documentation
├── frontend/
│ ├── public/
│ │ └── index.html # Entry point for the frontend
│ ├── src/
│ │ ├── components/
│ │ │ └── SearchButton.js # A search button component
│ │ └── App.js # Main application file
│ ├── tests/
│ │ └── App.test.js # Unit tests for frontend components
│ ├── package.json # Frontend dependencies and scripts (e.g., test, lint)
│ ├── .eslintrc.json # Linter configuration for the frontend
│ └── README.md # Frontend-specific documentation
└── README.md # Project overview and instructions