From a54f8689287d465d912b995d65564ad7b0b85179 Mon Sep 17 00:00:00 2001 From: Jacob <124112219+jacobwojoski@users.noreply.github.com> Date: Thu, 22 May 2025 21:49:06 -0400 Subject: [PATCH 1/6] Create README.md --- README.md | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 00000000..75c180c5 --- /dev/null +++ b/README.md @@ -0,0 +1,16 @@ +# Daggerheart +#### For Foundry VTT +This is a repo for a Foundry VTT implementation of daggerheart. It is not associated with critical role +or darrington press. + +# Table Of Contents +- [Overview](#Overview) +- [Developer Guide](#Developer-Guide) + +# Overview + +# Developer Guide + +[Foundry VTT Website][1] + +[1][https://foundryvtt.com/] From 9a518fc2b54a3f9df7185f5ba6f8e9a159135699 Mon Sep 17 00:00:00 2001 From: Jacob <124112219+jacobwojoski@users.noreply.github.com> Date: Thu, 22 May 2025 21:49:56 -0400 Subject: [PATCH 2/6] Update README.md --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 75c180c5..aa35b140 100644 --- a/README.md +++ b/README.md @@ -13,4 +13,5 @@ or darrington press. [Foundry VTT Website][1] -[1][https://foundryvtt.com/] + +[1]: [https://foundryvtt.com/] From 8b652f0c5caa6393e5ecefed9f67122f057e40e5 Mon Sep 17 00:00:00 2001 From: Jacob <124112219+jacobwojoski@users.noreply.github.com> Date: Thu, 22 May 2025 21:50:19 -0400 Subject: [PATCH 3/6] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index aa35b140..50d6fcea 100644 --- a/README.md +++ b/README.md @@ -14,4 +14,4 @@ or darrington press. [Foundry VTT Website][1] -[1]: [https://foundryvtt.com/] +[1]: https://foundryvtt.com/ From 6b7d3ab496d616ba24faafe8a0c9c0daaa94f2e1 Mon Sep 17 00:00:00 2001 From: Jacob <124112219+jacobwojoski@users.noreply.github.com> Date: Thu, 22 May 2025 21:50:55 -0400 Subject: [PATCH 4/6] Update README.md --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 50d6fcea..204d7bcf 100644 --- a/README.md +++ b/README.md @@ -4,8 +4,8 @@ This is a repo for a Foundry VTT implementation of daggerheart. It is not associ or darrington press. # Table Of Contents -- [Overview](#Overview) -- [Developer Guide](#Developer-Guide) +- [Overview](#overview) +- [Developer Guide](#developer-guide) # Overview From 87dea8aeaf413120131c932ba16b250c5671c13a Mon Sep 17 00:00:00 2001 From: Jacob <124112219+jacobwojoski@users.noreply.github.com> Date: Thu, 22 May 2025 22:27:50 -0400 Subject: [PATCH 5/6] Update README.md --- README.md | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/README.md b/README.md index 204d7bcf..4b286cff 100644 --- a/README.md +++ b/README.md @@ -10,7 +10,20 @@ or darrington press. # Overview # Developer Guide +#### Setup +- Open a terminal in the directory with the repo `cd //` +- Install npm `npm install` +- Update package.json to match your profile +``` +"start": "concurrently \"rollup -c --watch\" \"node C:/FoundryDev/resources/app/main.js --dataPath=C:/FoundryDevFiles --noupnp\" \"gulp\"", +"start-test": "node C:/FoundryDev/resources/app/main.js --dataPath=C:/FoundryDevFiles && rollup -c --watch && gulp", +``` +- Replace `C:/FoundryDev/resources/app/main.js` with `////` +- The main is likely in `/resouces/app/main.js` +- Replace `--dataPath=C:/FoundryDevFiles` with `////` + +Now you should be able to build the app using `npm start` [Foundry VTT Website][1] From 5affbb6c9c9a5b4ed0799f892a75a79fd1ac2b4e Mon Sep 17 00:00:00 2001 From: Jacob <124112219+jacobwojoski@users.noreply.github.com> Date: Thu, 22 May 2025 22:32:39 -0400 Subject: [PATCH 6/6] Update README.md --- README.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/README.md b/README.md index 4b286cff..1d2dab80 100644 --- a/README.md +++ b/README.md @@ -12,6 +12,9 @@ or darrington press. # Developer Guide #### Setup - Open a terminal in the directory with the repo `cd //` +- NOTE: The repo should be placed in the system files are or somewhere else and a link (if on linux) is placed in the system directory +- NOTE: Linux link can be made using `ln -snf daggerheart` inside the system folder + - Install npm `npm install` - Update package.json to match your profile ```