Rename development to local

Alo! Please I need some help to know where I have to make changes if I want to rename the enviroment development to local.

Thx

Iโ€™m assuming your talking about Trellis?

What have you tried so far? Why not just try giving a shot at renaming the โ€œdevelopmentโ€ strings found within the project to โ€œlocalโ€? Should be pretty straightforward.

Thanks again for the help @ben, like you subject I get work what I want but I only change some files not all you are showing me, after run vagrant up I have my local with the new environment running.

That are the files I change.

-Vagrantfile

Line 11

config_file = File.join(ANSIBLE_PATH, 'group_vars', 'local', 'wordpress_sites.yml')

Line 78

'local' => ['default']

-wordpress_sites.yml

wordpress_sites:
example.de:
site_hosts:
  - example.local
local_path: ../site # path targeting local Bedrock site directory (relative to Ansible root)
site_install: true
site_title: Example
admin_user: admin
admin_password: admin
admin_email: admin@example.local

multisite:
  enabled: false
  subdomains: false

ssl:
  enabled: false
cache:
  enabled: false
  duration: 30s

env:
  disable_wp_cron: true
  wp_home: http://example.local
  wp_siteurl: http://example.local/wp
  wp_env: local
  db_name: example_local
  db_user: root
  db_password: root`

hosts/development (Rename file to local)

# Not used. Vagrant generates its own hosts file automatically and uses it
[web]
127.0.0.1

[local:children]
web

trellis/windows.sh

Line 54

ansible-playbook ${ANSIBLE_PATH}/dev.yml -i ${TEMP_HOSTS}/local --sudo --user=vagrant --connection=local

Files and folders rename

trellis/group_vars/development/main.yml โ†’ trellis/group_vars/local/main.yml
trellis/group_vars/development/php.yml โ†’ trellis/group_vars/local/php.yml
trellis/group_vars/development/wordpress_sites.yml โ†’ trellis/group_vars/local/wordpress_sites.yml
trellis/group_vars/development/mail.yml โ†’ trellis/group_vars/local/mail.yml

You think I need also to change the file travis.yml