Websites and final projects created by Codi 2018
Group Projects
Personal Projects
Pull each git submodule
$ npm git:initrun the local included install script:
$ npm installThis will:
- download every project from git
- enter each directory
- run
npm installin each directory
note: on Windows 10, you need to install a specific Meteor version. Use meteor update --release 1.6.1.2-rc.0. You will also need node-gyp, which you can setup in one command from an admin shell npm install --global --production windows-build-tools. IT seems that to do that, you need to turn off Windows Defender.
Update all submodules
$ npm run git:updateCheck all the required dependencies are available
$ npm run requirementsInstall whatever is missing, then
install/reinstall missing modules
$ npm run install:allBuild the projects:
$ npm run build:allUse the included start script:
$ npm run <NAME>Where <NAME> is the name of a student project (directory), e.g, npm run amr_gharz
or
$ npm startto run all projects
run npm install in each subdirectory
$ npm install Update each submodule to its latest version
$ npm run git:updateInstall a specific project
$ npm run install:<NAME>Build a specific project
$ npm run build:<NAME>MIT