One Paragraph of project description goes here
These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.
| // Claude Code is a Beta product per Anthropic's Commercial Terms of Service. | |
| // By using Claude Code, you agree that all code acceptance or rejection decisions you make, | |
| // and the associated conversations in context, constitute Feedback under Anthropic's Commercial Terms, | |
| // and may be used to improve Anthropic's products, including training models. | |
| // You are responsible for reviewing any code suggestions before use. | |
| // (c) Anthropic PBC. All rights reserved. Use is subject to Anthropic's Commercial Terms of Service (https://www.anthropic.com/legal/commercial-terms). | |
| // Version: 0.2.9 |
| ## Step 1 ## | |
| In your current user directory, create a folder named ".aws". | |
| Also create a file named "credentials" with your AWS credentials. | |
| ## Step 2 ## | |
| Download Terraform (https://releases.hashicorp.com/terraform/0.14.7/terraform_0.14.7_windows_amd64.zip) | |
| Create a folder with a name of your taste and place the "terraform.exe" file. | |
| ## Step 3 ## | |
| In that same folder you just created, create the files: "provider.tf", "variables.tf", "main.tf" and "config.sh". |
| " This line should not be removed as it ensures that various options are | |
| " properly set to work with the Vim-related packages available in Debian. | |
| runtime! debian.vim | |
| " Vim self configurations | |
| set cindent | |
| set incsearch | |
| set backspace=2 | |
| set foldenable |
When the directory structure of your Node.js application (not library!) has some depth, you end up with a lot of annoying relative paths in your require calls like:
const Article = require('../../../../app/models/article');Those suck for maintenance and they're ugly.