# Considering static files in PkgTemplates.jl

**URL:** https://discourse.julialang.org/t/considering-static-files-in-pkgtemplates-jl/104652
**Category:** Tooling
**Created:** [October 6, 2023, 9:24am UTC](https://discourse.julialang.org/t/considering-static-files-in-pkgtemplates-jl/104652 "2023-10-06T09:24:31Z")
**Posts on this page:** 1
**Page:** 1

<div class="post-metadata">

### Author: ![Anton\_Hinneck](https://sea2.discourse-cdn.com/julialang/user_avatar/discourse.julialang.org/anton_hinneck/32/22716_2.png) [@Anton\_Hinneck](https://discourse.julialang.org/u/Anton_Hinneck)
#### Post date: [October 6, 2023, 9:24am UTC](https://discourse.julialang.org/t/considering-static-files-in-pkgtemplates-jl/104652/1 "2023-10-06T09:24:31Z")

</div>

I am working on a Julia template that needs static files for containerization and deployment.  
./templates/ looks as follows:

- src
- test
- docs
- deployment  
.gitlab-ci.yml  
LICENSE  
script.jl  
…

The problem I found is that ./deployment/\* and ./script.jl are not considered when calling create\_template().  
By considered I mean being copied into the new package’s directory.

Is there some already implemented functionality to achive this, or do I need to implement sth from scratch?

I would be thankful for any pointers.
