The Vinyl Shop project
- Follow the instructions in Config -> Laravel project -> Start a new project
- Make a new Laravel project vinyl_shop
- Configure Homestead (and make a new test domain vinyl_shop.test)
- Take care of autocompletion by generating the necessary helper file and enabling the Laravel plugin in PhpStorm
- Browse to the project via the URL http://vinyl_shop.test
Commit "Opdracht 0: startbestanden"
- Open README.md and replace the content with the markdown-formatted text below. Use your own name, student number and (class) group!
# The Vinyl Shop
## Project info
Laravel project, implemented during the course 'Webapplicaties in PHP', 2ITF, Thomas More Kempen.
## Student info
- **Name:** Jan Janssen
- **Number:** r1234567
- **Group:** 2 APP-BI A
1
2
3
4
5
6
7
2
3
4
5
6
7
- Open .gitignore and add the line
/.idea
/.idea
/node_modules
/public/hot
/public/storage
...
1
2
3
4
5
2
3
4
5
- Execute the following commands in a terminal window:
git init
git add .
git commit -m "Opdracht 0: startbestanden"
1
2
3
2
3
- Login to your Github account and make a new private repo vinyl_shop_surname_name (e.g. vinyl_shop_Janssen_Jan) without .gitignore and README.md
- Connect your local repo with the remote repo:
git remote add origin <remote-url>
(e.g.git remote add origin https://github.com/jkwadraat/vinyl_shop_Janssen_Jan.git
) - Push your local repo to the remote repo:
git push -u origin master