decker-edu / decker

A markdown based tool for slide deck creation.
GNU General Public License v3.0
60 stars 15 forks source link

hidden files in project dir not copied to public #78

Closed marcerich closed 11 months ago

marcerich commented 11 months ago

'decker' by default currently ignores any hidden files (i.e., only verified for .htpasswd) in the project directory. Not sure if thats intended but decker publish then misses, e.g., a .htpasswd file one puts in the project dir for simple access definitions.

monofon commented 11 months ago

Add .htpasswd to static-resources:

static-resources:
  - .htpasswd

Then it works.

marcerich commented 11 months ago

Add .htpasswd to static-resources:

static-resources:
  - .htpasswd

Then it works.

Sure, thank. Knew that but the question is more like "What are we (or should decker) purposely include/exclude"? So the take is, only the -deck.html and all its dependencies + 'static-resources', right!