The Vinyl Shop project

Laravel home page

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
  • Open .gitignore and add the line /.idea
 





/.idea
/node_modules
/public/hot
/public/storage
...
1
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
  • 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
Last Updated: 9/30/2019, 7:09:00 PM