Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/urda/advent-of-code
https://adventofcode.com/
https://github.com/urda/advent-of-code
Last synced: about 1 month ago
JSON representation
https://adventofcode.com/
- Host: GitHub
- URL: https://github.com/urda/advent-of-code
- Owner: urda
- License: apache-2.0
- Created: 2021-12-02T10:34:44.000Z (about 3 years ago)
- Default Branch: master
- Last Pushed: 2023-12-21T01:29:12.000Z (about 1 year ago)
- Last Synced: 2024-05-02T01:20:36.574Z (8 months ago)
- Language: Python
- Homepage:
- Size: 974 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Advent of Code
https://adventofcode.com/
# Environment Setup
**The following instructions are designed around `pyenv`, `pyenv-virtualenv`.**
Prepare the base python:
```bash
pyenv install 3.12.0
```Create a python virtual environment:
```bash
pyenv virtualenv 3.12.0 advent
```Switch to it after creation:
```bash
pyenv shell advent
```Go ahead and update `pip`:
```bash
pip install --upgrade pip
```And install the development requirements:
```bash
pip install -r requirements-dev.txt
```# Running the "project"
You can launch the `advent-of-code` project with:
```bash
make run
```# Running the "utilities"
You can launch the project utilities with:
```bash
make utils
```