Skip to content

Commit

Permalink
Add composer.json and update .gitignore
Browse files Browse the repository at this point in the history
A new composer.json file has been added with basic project information and dependencies. The .gitignore file was also updated to include the /vendor/ directory, ensuring that dependencies stored there are not tracked by git.
  • Loading branch information
nbejansen committed Jan 17, 2024
1 parent bd26511 commit e03418f
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,4 @@
.idea
flight.yml

/vendor/
13 changes: 13 additions & 0 deletions composer.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
{
"name": "sitepilot/app-stack",
"description": "Ansible playbooks for provisioning web servers optimized for WordPress and Laravel.",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Sitepilot",
"email": "support@sitepilot.io"
}
],
"require": {}
}

0 comments on commit e03418f

Please sign in to comment.