10

I've initialized a project with my build tool as follows

sbt new playframework/play-scala-seed.g8

Which correctly generated the project from the template I wanted. My only problem is that there's now a .g8 directory under my project

By peeking inside, it looks like it only has whatever is needed to genere the code from a template

Is it ok to delete? Should I commit it to my git repository? Thanks!

JSelser
  • 3,510
  • 1
  • 19
  • 40

1 Answers1

12

The project supports using giter8 to create scaffolds

So technically it is safe to delete, but you will lose the g8Scaffold form feature.

Justin Kaeser
  • 5,868
  • 27
  • 46
  • 1
    Oh, taht explains why theres a `form` directory under `.g8`. Welp, I'm not creating any forms so I guess I'm good. Thanks – JSelser Apr 05 '17 at 18:01