17 lines
283 B
Plaintext
17 lines
283 B
Plaintext
---
|
|
title: "Development"
|
|
description: "How to work on 01OS"
|
|
---
|
|
|
|
## Setup for development:
|
|
|
|
```bash
|
|
# Clone the repo, cd into the 01OS directory
|
|
git clone https://github.com/KillianLucas/01.git
|
|
cd 01OS
|
|
|
|
# Install dependencies, run the commands above
|
|
poetry install
|
|
poetry run 01
|
|
```
|