diff --git a/tasks/main.yml b/tasks/main.yml index a180b63..c531891 100644 --- a/tasks/main.yml +++ b/tasks/main.yml @@ -31,3 +31,13 @@ exclude: - "LICENSE" - "README.md" + +- name: "Copy the project files to the server" + copy: + src: "{{ project_name }}" + dest: "{{ ansible_user_dir }}/{{ project_name }}" + +- name: "Copy the traefik config" + copy: + src: "traefik.yaml" + dest: "{{ ansible_user_dir }}/{{ project_name }}/traefik.yaml"