Commit Graph

57 Commits

Author SHA1 Message Date
Tim Joosten f08e4f8bc5
Update .gitignore to not ignore auth.json lan file. (#6515) 2025-01-06 08:52:53 -06:00
Emran Ramezan bc03c8d748
Update .gitignore (#6486)
* Update .gitignore

Added Panic's Nova Code Editor `dot` files

* Update .gitignore

---------

Co-authored-by: Taylor Otwell <taylor@laravel.com>
2024-11-08 07:55:36 +10:00
Taylor Otwell b378ce946a
Add Tailwind, "composer run dev" (#6463)
This PR does two things...

First, it adds a basic Tailwind configuration out of the box. This lets you start using Tailwind immediately without installing any starter kit. Useful if you just want to mess around or build things from scratch.

Second, it adds a composer run dev script, which starts php artisan serve, php artisan queue:listen --tries=1, php artisan pail (now a dev dependency by default), and npm run dev all in one command, with color coded output in the terminal using concurrently.
2024-10-10 14:21:56 -05:00
Fahad Khan 168e685936
Update .gitignore with Zed Editor (#6449) 2024-09-05 15:04:18 -05:00
Prince John Santillan 043a454ab8
Add .phpactor.json to .gitignore (#6400)
Laravel Herd adds this file when opening up Tinkerwell from Herd
2024-05-13 12:07:32 -05:00
TENIOS 63202ceb0f
Update .gitignore (#6123)
Reorder
2023-02-21 08:49:27 +01:00
Shakil Alam 36202b2012
Add PHPUnit result cache to gitignore (#6105) 2023-02-14 13:31:16 -06:00
Nuno Maduro 99b1d97321
[10.x] Adds PHPUnit 10 support (#6052)
* Adds PHPUnit 10 support

* Reverts `noNamespaceSchemaLocation`

* Improves PHPUnit configuration file
2023-02-07 09:26:27 -06:00
Dominik Rajkowski 586b9e7bf5
Add /.fleet directory to .gitignore (#6011) 2022-10-17 09:18:45 -05:00
I Putu Bagus Purnama Yasa 7f62c14563
ignore .env.production (#6004) 2022-10-06 09:02:37 -05:00
Dries Vints 14719d097a
Update .gitignore (#5924) 2022-06-30 08:31:18 -05:00
Jess Archer 86b4b1b656
[9.x] Vite (#5904)
* Use Vite

* Gitignore Vite build directory

* Use CSS entry points

* Update plugin

* Linting

* Update plugin
2022-06-22 13:07:47 -05:00
Matthias Niess 9605fb17a3
The docker-compose.override.yml should not be ignored by default (#5838)
While this file can be used for local overrides, that is not its
only intended usage. E.g. a common setup would be like this:

- *docker-compose.yml*: services shared across builds
- *docker-compose.override.yml*: services only used in development
- *docker-compose.production.yml*: configuration needed for building production images.

Now for regular development you just need to run `docker-compose up --build` and only
in you CI you would build and run for production by explicitly naming the yml files.

TL;DR: Excluding docker-compose.override.yml seems to be a personal preference of
someone and they should do that in their global .gitignore if the are so inclined.
2022-03-09 10:34:17 -06:00
Michael de Oliveira Ferreira 131a10260e
add .idea and .vscode to gitignore (#5615)
Add folders to gitignore. The same exclusions exist in the laravel / framework gitignore.
2021-05-24 08:19:41 -05:00
Taylor Otwell 5dd08043a3 wip 2021-01-12 14:02:00 -06:00
Gemma Black ea7de4f5a9
Hide .env.bak as well as .env.backup in .gitignore (#5515) 2021-01-12 12:51:19 -06:00
Attila Szeremi 03ecf00f7a
Gitignore docker-compose.override.yml (#5487)
Docker allows for you to override parts of `docker-compose.yml` locally with the help of a `docker-compose.override.yml` file: https://docs.docker.com/compose/extends/#understanding-multiple-compose-files

I propose to have this file ignored by default for new projects, similarly to how `.env` is ignored to be able to override default configuration (locally).

Example use case: Someone might want to use Laravel Sail, but would have multiple Laravel projects running in MySQL and would like to run a single MySQL server for each project and have a way to be able to override docker-compose to make that happen. Or maybe just in general they want to add a new service that they want to run only for themselves, and not for colleagues.
2020-12-10 07:32:49 -06:00
Sjors Ottjes ebc6f6e2c7 Update .gitignore (#5046) 2019-06-18 12:18:58 +02:00
Taylor Otwell bc435e7fdd
Update .gitignore 2018-12-01 10:53:17 -06:00
narwy 346a1dbddf
[ALL] gitignore for NetBeans IDE
vscode has it's own ignore and so should NetBeans IDE
2018-10-30 18:57:34 +00:00
Caleb Porzio 6b40d49efd
Add .phpunit.result.cache to the .gitignore
PHPUnit version 7.3 adds a new argument `--cache-result` which allows you to do awesome things like re-run test failures using a command like:

`phpunit --cache-result --order-by=defects --stop-on-defect`

The cache file is stored as `.phpunit.result.cache`

I believe PHPUnit 8 will have caching on by default, so this file will start popping up in everyone's project quickly.
2018-08-10 16:52:21 -04:00
Drazen Vasiljevic d0022ab33d Add VSCode to gitignore file
Add /.vscode to .gitignore file to prevent commiting content of that folder to git repo.
2018-01-30 13:53:16 +01:00
Jack Fletcher 12db505122 Ignore the Yarn error log
Like the npm error log, this file can also be ignored.

[See also](https://stackoverflow.com/questions/42592168/should-i-add-yarn-error-log-to-my-gitignore-file)
2017-07-04 15:25:06 +01:00
JuanDMeGon 6b2abec45f Ignore the npm debug log
When an NPM run fails, is created a npm-debug.log file. This file can be ignored and should not be published on a Git based repository.
2017-04-18 20:58:22 -05:00
Morva Kristóf 99d4e59d25 Sorting gitignore file 2017-04-03 21:06:10 +02:00
Dayle Rees a4d1880450 Add vagrant virtual machine directory to git ignore list. 2017-03-28 09:36:45 +01:00
Jean-Philippe Murray d4d5330bbb Remove the hot file from versionning
Following https://github.com/laravel/framework/pull/17571, I was correctly pointed that the small proposition should be made over here. Here's a copy / past of my message, for clarity's sake.
---

When you run `npm run hmr`, a `hot` file is created to the public folder for the `mix()` helper to know if it has to server from the webpack server or not. This file does not go away until we run `npm run dev` (or `watch`). 

True, if we use `npm run production` in our production server it goes away too, but in case we don't make it go away in development, I don't think it's necessary to version it.
2017-01-26 21:22:52 -05:00
Jehad Assaf f7a79a33cf Ignore Passport-generated OAuth keys
These files should not end up in source control IMO. And even though Passport is a separate package it is a first-party one and the base Laravel install should be "prepared" for it.

What do you guys think?
2016-10-12 15:51:50 +03:00
Heru Hang Tryputra a14dc56a7f Fix order
Fix .gitignore items in alphabetical order.
2016-08-22 17:02:27 +07:00
Till Krüss f111704314 Fix order 2016-08-13 18:42:51 -07:00
balping 3415beaebb GitIgnore PHPStorm's config directory from
If you open a (laravel) project in phpstorm, it places a `.idea` folder in the project root. This contains project-specific ide settings. You usually don't want to include such files in a git repo.
2016-08-14 02:03:34 +02:00
Taylor Otwell c751b33d01 add to gitignore 2016-02-12 09:05:19 -06:00
Andrew Hood 12386cf670 Ignore Homestead.json 2015-07-25 12:57:52 -07:00
Taylor Otwell 7a8800c6b4 add Homestead.yaml to gitignore 2015-06-20 14:56:23 -05:00
Dan Harper b600d877f1 Add "node_modules" to .gitignore
Seems sensible if Laravel's going to push Elixir.

A person unfamiliar with the node ecosystem should be able to use Elixir with ease, however I don't feel they should necessarily know up-front that they should add node_modules to their global .gitignore file.
2015-02-01 11:16:11 +00:00
Taylor Otwell 3c9d67ad65 Remove some stuff from .gitignore.
Let people define their own global .gitignore file. Also people keep
complaining that composer.lock is in this file.
2014-11-06 20:51:39 -06:00
Taylor Otwell d37ee5a8eb Ignore node_modules 2014-10-12 14:37:29 -05:00
Taylor Otwell 5a34c60c61 Simplify environment loading. 2014-10-08 17:12:10 -05:00
Taylor Otwell 800cdac1a0 Work on paths. 2014-10-02 19:39:47 -05:00
Taylor Otwell 2889a26847 Ignore idea folders. 2014-09-27 20:48:34 -05:00
Julio Pavón 479461e01f Simplify .gitignore's .env 2014-08-21 13:42:32 +01:00
Taylor Otwell aae8ef3059 Fix gitignore files. 2014-08-19 00:03:15 -05:00
crynobone da93563ad7 Remove none existing files being referred in .gitignore
Signed-off-by: crynobone <crynobone@gmail.com>
2014-08-17 19:32:08 +08:00
Taylor Otwell 3a34a99694 Working on default route setup. 2014-08-01 23:51:30 -05:00
Lucas 3d99ff5c8d [PROPOSAL] Ignore all .env.*.php files
All environment files shall be ignored from Git
2014-03-05 14:29:57 +01:00
Taylor Otwell 73094f2633 Ignore environment files. 2014-01-18 19:14:57 -06:00
Joseph Silber 52a9638825 gitignore windows thumbnails 2013-10-13 21:53:44 -04:00
Taylor Otwell 13d7adb38f Update for optimize command. 2013-03-15 22:22:11 -05:00
Taylor Otwell 5d99f9f1d6 moving laravel 4 into develop branch. 2013-01-11 15:14:07 -06:00
syntaqx 948ce87cd9 added gitattributes file and updated gitignore
Signed-off-by: syntaqx <syntaqx@gmail.com>
2012-05-18 23:51:00 -06:00