Skip to content
Closed
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
30 changes: 0 additions & 30 deletions .codecov.yml

This file was deleted.

54 changes: 5 additions & 49 deletions .dockerignore
Original file line number Diff line number Diff line change
@@ -1,58 +1,14 @@
# Git and GitHub
.git/
.github/
.git
.gitignore

# Development and CI files
.vscode/
.idea/
*.swp
*.swo
.env
.env.example
docker-compose*.yml
.dockerignore
*.md
!README.md
!LICENSE

# Build artifacts
bin/
coverage*
*.out
*.test
*.prof
__debug_bin*
tmp/

# Generated data
exports/
logs/
config/
!config/config.example.toml
*.csv
*.json

# Node.js files (for old version)
node_modules/
npm-debug.log

# Go specific
vendor/
dist/

# Test directories
tests/

# Documentation
docs/

.DS_Store
logs/
backup/
copy/
brain_ops/
TEMP/
*.tar.gz
letterboxd_import.csv
watched_*.csv
watchlist_*.csv
watchlist_*.csv
README.md
LICENSE
51 changes: 0 additions & 51 deletions .github/ISSUE_TEMPLATE/beta_feedback.md

This file was deleted.

66 changes: 22 additions & 44 deletions .github/ISSUE_TEMPLATE/bug_report.md
Original file line number Diff line number Diff line change
@@ -1,57 +1,35 @@
---
name: Bug Report
name: Bug report
about: Create a report to help us improve
title: "[Bug] "
labels: "bug"
title: "[BUG] "
labels: bug
assignees: ""
---

## Bug Report
**Describe the bug**
A clear and concise description of what the bug is.

### Description
**To Reproduce**
Steps to reproduce the behavior:

<!-- A clear and concise description of what the bug is -->
1. Go to '...'
2. Run command '....'
3. See error

### Version Information
**Expected behavior**
A clear and concise description of what you expected to happen.

- Version: <!-- e.g., v2.0.0, v2.0.0-beta1 -->
- Platform: <!-- e.g., Linux, macOS, Windows, Docker -->
- Architecture: <!-- e.g., amd64, arm64 -->
**Screenshots**
If applicable, add screenshots to help explain your problem.

### Steps to Reproduce
**Environment (please complete the following information):**

1. <!-- First step -->
2. <!-- Second step -->
3. <!-- And so on... -->
- OS: [e.g. Ubuntu 20.04, macOS 12.0]
- Docker version (if applicable): [e.g. 20.10.12]
- Script version: [e.g. commit hash or version tag]

### Expected Behavior
**Logs**
Please include relevant logs from the `logs` directory if applicable.

<!-- A clear and concise description of what you expected to happen -->

### Actual Behavior

<!-- A clear and concise description of what actually happened -->

### Screenshots

<!-- If applicable, add screenshots to help explain your problem -->

### Configuration File

<!-- Please provide your config.toml (with sensitive information redacted) -->

```toml
# Paste your config here
```

### Logs

<!-- Please include relevant logs -->

```
Paste logs here or attach log files
```

### Additional Context

<!-- Add any other context about the problem here -->
**Additional context**
Add any other context about the problem here.
37 changes: 13 additions & 24 deletions .github/ISSUE_TEMPLATE/feature_request.md
Original file line number Diff line number Diff line change
@@ -1,33 +1,22 @@
---
name: Feature Request
name: Feature request
about: Suggest an idea for this project
title: "[Feature] "
labels: "enhancement"
title: "[FEATURE] "
labels: enhancement
assignees: ""
---

## Feature Request
**Is your feature request related to a problem? Please describe.**
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]

### Problem Statement
**Describe the solution you'd like**
A clear and concise description of what you want to happen.

<!-- A clear and concise description of what problem you're trying to solve. E.g., I'm always frustrated when [...] -->
**Describe alternatives you've considered**
A clear and concise description of any alternative solutions or features you've considered.

### Proposed Solution
**Additional context**
Add any other context or screenshots about the feature request here.

<!-- A clear and concise description of what you want to happen -->

### Alternative Solutions

<!-- A clear and concise description of any alternative solutions or features you've considered -->

### Use Case

<!-- Describe a concrete use case that demonstrates the value of this feature -->

### Additional Context

<!-- Add any other context, screenshots, or examples about the feature request here -->

### Would you be willing to help implement this feature?

<!-- Let us know if you'd like to contribute to implementing this feature -->
**Would you be willing to contribute to this feature?**
Let us know if you'd be interested in helping implement this feature.
42 changes: 16 additions & 26 deletions .github/PULL_REQUEST_TEMPLATE.md
Original file line number Diff line number Diff line change
@@ -1,38 +1,28 @@
## Pull Request Description
## Description

<!-- Describe what changes this PR introduces and why -->
Please include a summary of the change and which issue is fixed. Please also include relevant motivation and context.

## Related Issues
Fixes # (issue)

<!-- Link to related issues using the syntax: "Fixes #123" or "Relates to #456" -->
## Type of change

## Type of Change
Please delete options that are not relevant.

- [ ] Bug fix (non-breaking change which fixes an issue)
- [ ] New feature (non-breaking change which adds functionality)
- [ ] Breaking change (fix or feature that would cause existing functionality to not work as expected)
- [ ] This change requires a documentation update
- [ ] Refactoring (no functional changes)
- [ ] CI/CD or build process changes
- [ ] Documentation update

## Checklist
## How Has This Been Tested?

- [ ] I have read the [CONTRIBUTING](../blob/main/CONTRIBUTING.md) document
- [ ] My code follows the code style of this project
- [ ] I have added tests that prove my fix is effective or that my feature works
- [ ] New and existing unit tests pass locally with my changes
- [ ] I have updated the documentation accordingly
- [ ] My changes generate no new warnings
- [ ] Any dependent changes have been merged and published in downstream modules

## Screenshots (if applicable)

<!-- Add screenshots here if UI changes are made -->
Please describe the tests that you ran to verify your changes. Provide instructions so we can reproduce.

## Testing Steps
## Checklist:

<!-- Provide instructions so we can reproduce your testing -->

## Additional Information

<!-- Any additional information about the PR -->
- [ ] My code follows the style guidelines of this project
- [ ] I have performed a self-review of my own code
- [ ] I have commented my code, particularly in hard-to-understand areas
- [ ] I have made corresponding changes to the documentation
- [ ] My changes generate no new warnings
- [ ] I have tested my changes and they work as expected
- [ ] Any dependent changes have been merged and published in downstream modules
Loading
Loading