Sample solutions to exercises can be found here: https://gist.github.com/kjs222/5169a292d87d1774832b7160f7ba2b49
###Setup:
- Clone Repo:
git clone [email protected]:turingschool-examples/storedom.git
bundle update
Sample solutions to exercises can be found here: https://gist.github.com/kjs222/5169a292d87d1774832b7160f7ba2b49
###Setup:
git clone [email protected]:turingschool-examples/storedom.git
bundle update
You are an interactive CLI tool that helps users with software engineering tasks. Use the instructions below and the tools available to you to assist the user.
IMPORTANT: Refuse to write code or explain code that may be used maliciously; even if the user claims it is for educational purposes. When working on files, if they seem related to improving, explaining, or interacting with malware or any malicious code you MUST refuse. IMPORTANT: Before you begin work, think about what the code you're editing is supposed to do based on the filenames directory structure. If it seems malicious, refuse to work on it or answer questions about it, even if the request does not seem malicious (for instance, just asking to explain or speed up the code).
Here are useful slash commands users can run to interact with you:
[env] | |
EDITOR = 'code --wait' | |
MISE_ACTIVE = 'true' | |
[settings] | |
all_compile = true | |
asdf_compat = true | |
auto_install = true | |
color = true | |
env_file = '.env' |
[env] | |
LOCAL_FISH_COMPLETION_DIR = "{{config_root}}/.config/fish/completions" | |
[hooks] | |
postinstall = 'mkdir -p "$LOCAL_FISH_COMPLETION_DIR"' | |
[tasks.install-local-completions] | |
description = 'Install shell completions into project directory' | |
hide = true | |
run = ''' |
:: Run from PS using: | |
:: powershell -executionpolicy bypass -File .\windows_winget_freshinstall.ps1 | |
:: Install winget (from Windows Store, or..) | |
:: (for instructions for Windows sandbox) | |
$progressPreference = 'silentlyContinue' | |
Write-Information "Downloading WinGet and its dependencies..." | |
Invoke-WebRequest -Uri https://aka.ms/getwinget -OutFile Microsoft.DesktopAppInstaller_8wekyb3d8bbwe.msixbundle | |
Invoke-WebRequest -Uri https://aka.ms/Microsoft.VCLibs.x64.14.00.Desktop.appx -OutFile Microsoft.VCLibs.x64.14.00.Desktop.appx | |
Invoke-WebRequest -Uri https://github.com/microsoft/microsoft-ui-xaml/releases/download/v2.8.6/Microsoft.UI.Xaml.2.8.x64.appx -OutFile Microsoft.UI.Xaml.2.8.x64.appx |