.gitignore for LemonStand
20 ignore rules for LemonStand, ready to copy into your repository.
E-commerce platform
The complete .gitignore for LemonStand
# Generated by LFGitignore - https://lfgitignore.com
# Created: 2026-08-05 01:31:34 UTC
# Technologies: LemonStand
### LemonStand ###
boot.php
index.php
install.php
/config/*
!/config/config.php
/controllers/*
/init/*
/logs/*
/phproad/*
/temp/*
/uploaded/*
/installer_files/*
/modules/backend/*
/modules/blog/*
/modules/cms/*
/modules/core/*
/modules/session/*
/modules/shop/*
/modules/system/*
/modules/users/*
What these LemonStand rules actually ignore
Every pattern below, and why it belongs in your .gitignore.
General
| Pattern | What it ignores |
|---|---|
boot.php |
General |
index.php |
General |
install.php |
General |
/config/* |
General |
!/config/config.php |
General |
/controllers/* |
General |
/init/* |
General |
/logs/* |
General |
/phproad/* |
General |
/temp/* |
General |
/uploaded/* |
General |
/installer_files/* |
General |
/modules/backend/* |
General |
/modules/blog/* |
General |
/modules/cms/* |
General |
/modules/core/* |
General |
/modules/session/* |
General |
/modules/shop/* |
General |
/modules/system/* |
General |
/modules/users/* |
General |
How to use this .gitignore for LemonStand
- Copy the LemonStand rules above, or download the file directly.
- Create a file named .gitignore at the root of your Git repository and paste the rules into it.
- If some of those files are already tracked, run git rm -r --cached . then commit again — Git only applies ignore rules to untracked files.
- Commit the .gitignore so everyone on the team shares the same rules.