linuxmint / website-wizixo

59 stars 25 forks source link

added gitignore with npm script #10

Closed kharbanda14 closed 3 years ago

kharbanda14 commented 3 years ago

to start the server we can use the following command :

npm run start
tuliocll commented 3 years ago

what do you think to change the default index file on gulpfile ? like this:

// Static Server
gulp.task("serve", function (done) {
  browserSync.init({
    server: {
      baseDir: Paths.TEMPLATE,
      index: "mint-main.html",
    },
  });
  done();
});
kharbanda14 commented 3 years ago

@tuliocll thanks for the suggestion, i recently pushed a new commit.

BhavikJain07 commented 3 years ago

will including node modules won't make it dependent on any backend server?

tuliocll commented 3 years ago

will including node modules won't make it dependent on any backend server?

no, we just have gulp, sass and browser-sync dependencies for development just to running the local server, on production we all ready have the static files (html, js, css...).