https://github.com/willianfalbo/aspnet-core-mvc-and-gulp
Using Gulp (https://gulpjs.com/) to automate and enhance workflows
https://github.com/willianfalbo/aspnet-core-mvc-and-gulp
Last synced: 7 months ago
JSON representation
Using Gulp (https://gulpjs.com/) to automate and enhance workflows
- Host: GitHub
- URL: https://github.com/willianfalbo/aspnet-core-mvc-and-gulp
- Owner: willianfalbo
- Created: 2019-04-25T21:53:00.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2019-05-16T21:58:21.000Z (over 6 years ago)
- Last Synced: 2025-03-24T01:52:24.346Z (7 months ago)
- Language: JavaScript
- Size: 961 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# 1 - Install Node.js
https://nodejs.org/en/download/# 2 - Install Gulp
https://gulpjs.com/docs/en/getting-started/quick-start# 3 - Restore aspnet core dependencies
`dotnet restore`# 4 - Restore node modules
`npm install`# 5 - Run or watch for changes in aspnet core mvc
`dotnet run` or `dotnet watch run`# 6 - Run or watch for changes in './scripts', './styles' and './node_modules'
`gulp build` or `gulp watch`
(after running the above command, all changes will be located in './wwwroot/...')
(to modify it, open the file 'gulpfile.js')