MediaImporter / README.md
Newer Older
85a3bb0 9 months ago History
37 lines | 1.434kb
Bogdan Timofte authored 9 months ago
1
# Media Importer Project
2

            
3
This repository contains the development and testing resources for the `media-importer.sh` script, which is the main product of this project.
4

            
5

            
6
## Project Structure
7

            
8
- `media-importer.sh`: The primary script under development and testing.
9
- `samples/code/autonas-media-importer.sh`: The original script that serves as inspiration for this project.
10
- `samples/`: Contains code samples, example files, and other resources used for development and testing. **Note:** Scripts and functions are not imported from this directory; it is strictly for reference and testing purposes.
11

            
12
## Version Control
13

            
14
Version control is implemented for all files except the `samples/` directory. The `samples/` directory is excluded from version control to avoid tracking test resources and sample files.
15

            
16
To exclude the `samples/` directory, the following entry should be added to the `.gitignore` file:
17

            
18
```
19
samples/
20
```
21

            
22
## Contribution Guidelines
23

            
24
- All development should focus on `media-importer.sh`.
25
- Do not import or source scripts/functions from the `samples/` directory.
26
- Use resources in `samples/` only for testing and development reference.
27

            
28
## License
29

            
30
Specify your license here.
31

            
32
---
33

            
34

            
35
For details on recent changes, including the removal of fallback date handling, see [CHANGELOG.md](./CHANGELOG.md).
36

            
37
This file is intended for GitHub Copilot and contributors to understand the project structure and guidelines.