Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/falkben/advent-of-code


https://github.com/falkben/advent-of-code

Last synced: 5 days ago
JSON representation

Awesome Lists containing this project

README

        

# Advent of Code

## 2021

## Website

### Pages

Index.html located in [site-dist](site-dist/).

Pages for each day are generated

```cmd
python scripts/gen_pages.py
```

### Styles

Get tailwind:

```cmd
npm install
```

Build css and keep updated:

```cmd
npx tailwindcss -i ./site-src/input.css -o ./site-dist/output.css --watch
```

or for publishing:

```cmd
npm run build-css
```

### Local dev

```cmd
python -m http.server -d site-dist
```