mini-sglang icon indicating copy to clipboard operation
mini-sglang copied to clipboard

[Chore] init .gitignore

Open hhyasdf opened this issue 1 week ago • 3 comments

Add .gitignore to the repository.

hhyasdf avatar Dec 21 '25 10:12 hhyasdf

any diffusion model support plan?

vigo999 avatar Dec 21 '25 10:12 vigo999

any diffusion model support plan?

Seens not related to this issue. Maybe you should create a new one. Xd

hhyasdf avatar Dec 21 '25 11:12 hhyasdf

Personally, I don't upload my gitignore (actually I would add .gitignore to the first line of my local .gitignore, which ignores itself). I agree we may need some public .gitignore. You may take a look at my configuration as reference.

# .vscode, .venv, any other hidden folders
.*

# pycache
__pycache__/

# installed packages
*.dist-info/
*.egg-info/

# json files
*.json
*.jsonl

# profiling data
*.nsys-rep
*.ncu-rep

# binaries
build/
dist/
*.tar.gz

DarkSharpness avatar Dec 21 '25 16:12 DarkSharpness

Personally, I don't upload my gitignore (actually I would add .gitignore to the first line of my local .gitignore, which ignores itself). I agree we may need some public .gitignore. You may take a look at my configuration as reference.

# .vscode, .venv, any other hidden folders
.*

# pycache
__pycache__/

# installed packages
*.dist-info/
*.egg-info/

# json files
*.json
*.jsonl

# profiling data
*.nsys-rep
*.ncu-rep

# binaries
build/
dist/
*.tar.gz

Thanks, that's great. I‘ve taken the most of it and updated the commit, hope you like it.

hhyasdf avatar Dec 22 '25 14:12 hhyasdf