-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add .gitignore to the generated project (#5)
add .gitignore to the generated project
- Loading branch information
Showing
2 changed files
with
15 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -14,6 +14,11 @@ the project structure will be ru/tinkoff/load/ | |
|
||
How to install sbt <https://www.scala-sbt.org/1.x/docs/Setup.html>. | ||
|
||
Known bugs | ||
---------------- | ||
At the moment, when running on OS Windows, there is a problem - the temporary file `.gitignore` is not deleted. | ||
This does not affect project creation. There is a bug on the problem <https://github.com/foundweekends/giter8/issues/477>. | ||
|
||
Template license | ||
---------------- | ||
Written in 2020 by Chepkasov Sergey [email protected] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
/target/ | ||
/.settings | ||
/.classpath | ||
/.idea | ||
/.project | ||
/project/project/ | ||
/project/target/ | ||
/report/ | ||
*.log | ||
/results/ |