-
-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
docs: add section about resources being in a submodule
- Loading branch information
Showing
1 changed file
with
36 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -17,6 +17,42 @@ | |
> same root level. You need to individually set up each language you wish to | ||
> use. | ||
## Usage | ||
|
||
The repository does not contain task inputs as my own inputs are located | ||
in a private repository. If you wish to use this repository with your | ||
own inputs provide them in the following folder structure: | ||
|
||
```sh | ||
resources | ||
├── 2015 | ||
│ ├── 01 | ||
│ │ └── input.txt | ||
│ ├── 02 | ||
│ │ └── input.txt | ||
│ │ ... | ||
│ └── 25 | ||
│ └── input.txt | ||
│ ... | ||
└── 2023 | ||
├── 01 | ||
│ ├── example.1.txt | ||
│ ├── example.2.txt | ||
│ └── input.txt | ||
│ ... | ||
└── 25 | ||
└── input.txt | ||
``` | ||
|
||
### Cloning | ||
|
||
> Reference for myself, cloning with my private inputs | ||
```sh | ||
git clone --recurse-submodules -j8 [email protected]:AlexAegis/advent-of-code.git | ||
``` | ||
|
||
|
||
## [TypeScript](./solutions/typescript) | ||
|
||
[![2023 TypeScript Progress](https://img.shields.io/endpoint?url=https://raw.githubusercontent.com/AlexAegis/advent-of-code/master/.github/badges/typescript/2023.json)](/solutions/typescript/2023/) | ||
|