Run a github angular project 6

0

I uploaded a pro github project, I believe that because the file was very large it was "cut" some files, consequently when it is down again (using git clone) the code does not execute on the server.

OPS : The original folder (which was created) has approximately 250 mb, and the folder that was downloaded from github has 405 kb

Because of the large angular projects 6 is it possible to upload and download it in a functional way (running on the server)?

Reason: I'm doing an Angular 6 course and I use github to make the changes and to have a code to consult.

    
asked by anonymous 26.07.2018 / 16:12

1 answer

2

Run npm Install before running the project. Github is not downloading the node_modules folder

A tip to not greatly increase the project in github is to put the folder of the Node.js libraries in the file .gitignore .

    
27.07.2018 / 14:47