https://github.com/ignite/ignite-files
https://github.com/ignite/ignite-files
Last synced: 11 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/ignite/ignite-files
- Owner: ignite
- License: other
- Created: 2023-08-02T16:47:14.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2025-03-28T20:20:17.000Z (about 1 year ago)
- Last Synced: 2025-04-13T12:07:34.140Z (about 1 year ago)
- Language: Shell
- Size: 1.49 GB
- Stars: 2
- Watchers: 5
- Forks: 3
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Changelog: changelog.md
- Contributing: contributing.md
- License: LICENSE.md
- Code of conduct: code_of_conduct.md
- Codeowners: .github/CODEOWNERS
Awesome Lists containing this project
README
## Static files for ignite
> [!warning]
> This repository is deprecated. Ignite does not use pre-built static files anymore.
> Ignite Apps are directly handling their dependencies and Ignite CLI replaced node by go templates for easier maintenance and performance.
This repository is used to store large binary files separately from the main project repository to keep it clean and
manageable.
### Git LFS
To handle large files efficiently, we use **Git Large File Storage (Git LFS)**.
##### Setting Up Git LFS
To work with this repository, you need to install Git LFS on your local machine.
Follow the installation instructions from GitHub:
- [GitHub Docs: Installing Git LFS](https://docs.github.com/en/repositories/working-with-files/managing-large-files/installing-git-large-file-storage)
Alternatively, you can install it using a package manager:
- **Mac (Homebrew)**: `brew install git-lfs`
- **Linux**: Use your package manager (e.g., `sudo apt install git-lfs`)
- **Windows**: Use [Git for Windows](https://gitforwindows.org/), which includes Git LFS
More details
here: [git-lfs/git-lfs#3041 (comment)](https://github.com/git-lfs/git-lfs/issues/3041#issuecomment-533879953)
##### Pulling with LFS
After cloning, ensure all LFS files are fetched:
```sh
git lfs pull
```
##### Handling Remote URL Issues
Some users have reported issues when using SSH remotes. If you encounter errors like:
```
batch request: missing protocol: ""
```
Try using an HTTPS remote instead of SSH:
```sh
git remote set-url origin https://github.com/ignite/ignite-files.git
```
## Further Reading
- [GitHub Docs: Git LFS](https://docs.github.com/en/repositories/working-with-files/managing-large-files/collaboration-with-git-large-file-storage)