Skip to content

Commit

Permalink
Use a top-level directory for input files
Browse files Browse the repository at this point in the history
Makes built distributions simple to work with whilst avoiding clutter
(could .gitignore the files in top-most directory and make UX better...
Will see if it gets requested!)
  • Loading branch information
James authored and James committed Apr 26, 2019
1 parent a17de2f commit fc3af70
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/main/kotlin/org/idiosapps/Filenames.kt
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
package org.idiosapps

class Filenames {
val resourcePrefix: String = "./src/main/resources/org.idiosapps/"
val inputPrefix: String = "./input/"
val outputPrefix: String = "./output/"


val inputHeaderFilename: String = resourcePrefix + "header"
val inputTitleFilename: String = resourcePrefix + "title"
val inputStoryFilename: String = resourcePrefix + "story"
val inputHeaderFilename: String = inputPrefix + "header"
val inputTitleFilename: String = inputPrefix + "title"
val inputStoryFilename: String = inputPrefix + "story"

val inputVocabFilename: String = resourcePrefix + "vocab"
val inputKeyNamesFilename: String = resourcePrefix + "names"
val inputVocabFilename: String = inputPrefix + "vocab"
val inputKeyNamesFilename: String = inputPrefix + "names"

val outputStoryFilename: String = outputPrefix + "outputStory.tex"
val outputPDFFilename: String = outputPrefix + "outputStory.pdf"
Expand Down

0 comments on commit fc3af70

Please sign in to comment.