Compare commits

...

2 Commits

  1. 1
      .gitignore
  2. 2
      hosts
  3. 7
      readme.md
  4. 7
      tasks/shopware.yml

1
.gitignore vendored

@ -0,0 +1 @@
hosts_local

@ -1,2 +1,2 @@
[home]
swserver ansible_host=192.168.0.29 ansible_user=YOUR_USERNAME ansible_connection=ssh ansible_ssh_private_key_file=PATH_TO_KEY
swserver ansible_host=YOUR_IP ansible_user=YOUR_USERNAME ansible_connection=ssh ansible_ssh_private_key_file=PATH_TO_KEY

@ -1,2 +1,7 @@
# Replicating this guide as a ansible installation script:
- https://community.hetzner.com/tutorials/install-shopware-6
- https://community.hetzner.com/tutorials/install-shopware-6
## How it works:
- install modules for mysql `ansible-galaxy collection install community.mysql`
- add your variables in vars.yml
- run with `ansible-playbook run.yml -K`

@ -15,13 +15,10 @@
- php7.4-intl
- php7.4-cli
- mariadb-server
- python3-pymysql
state: latest
- name: Copy SQL file
copy:
src: ../prepare_db.sql
dest: /data/prepare_db.sql
# TODO: Add my.cnf
- name: Create Database
community.mysql.mysql_db:
name: shopware

Loading…
Cancel
Save