- Overview
- Features
- Project Structure
- Getting Started
- Project Roadmap
- Contributing
- License
- Acknowledgments
Seedrlike is inspired by Seedr. This allows the user to add magnet links to which in turn makes them available for download over https.
- Initiate downloads using magnet links
- Websocket for real time updates (tracking download progress and time to complete)
└── seedrlike/
├── Dockerfile
├── cmd
│ └── main.go
├── generate.go
├── go.mod
├── go.sum
├── internal
│ ├── api
│ ├── core
│ └── database
├── seedrlike
├── sqlc.yaml
├── tailwind.config.js
└── views
├── assets
├── components
└── layouts
Before getting started with seedrlike, ensure your runtime environment meets the following requirements:
- Programming Language: Go
- Package Manager: Go modules
- Container Runtime: Docker
Install seedrlike using one of the following methods:
Build from source:
- Clone the seedrlike repository:
❯ git clone https://github.com/plutack/seedrlike
- Navigate to the project directory:
❯ cd seedrlike
- Install the project dependencies:
install goose
to initialize the database after setting the enviroment variables in envrc.example
. This can be set depending on the user. For local development, direnv is recommended. To install, see goose documentation
❯ go build
❯ docker build -t {image_name} .
Before running the seedrlike binary run goose up
to initialize the tables in the specified database
Run seedrlike using the following command:
Using go modules
❯ go run ./cmd/main.go
❯ docker run -it -p 3000:3000 {image_name}
-
Task 1
:Fix bug: websocket complete event is not sent sometimes -
Task 2
: Bug: Fix file display size. -
Task 3
: Feat:Add test files. -
Task 4
: Feat: Keep track of file status during upload stage and send websocket events based on them.
- 💬 Join the Discussions: Share your insights, provide feedback, or ask questions.
- 🐛 Report Issues: Submit bugs found or log feature requests for the
seedrlike
project. - 💡 Submit Pull Requests: Review open PRs, and submit your own PRs.
Contributing Guidelines
- Fork the Repository: Start by forking the project repository to your github account.
- Clone Locally: Clone the forked repository to your local machine using a git client.
git clone https://github.com/plutack/seedrlike
- Create a New Branch: Always work on a new branch, giving it a descriptive name.
git checkout -b new-feature-x
- Make Your Changes: Develop and test your changes locally.
- Commit Your Changes: Commit with a clear message describing your updates.
git commit -m 'Implemented new feature x.'
- Push to github: Push the changes to your forked repository.
git push origin new-feature-x
- Submit a Pull Request: Create a PR against the original project repository. Clearly describe the changes and their motivations.
- Review: Once your PR is reviewed and approved, it will be merged into the main branch. Congratulations on your contribution!
This project is protected under the GLWTS Public License License.
- @Melkeydev - go-blueprint
- @anacrolix - anacrolix/torrent