-
Notifications
You must be signed in to change notification settings - Fork 0
Instalation Process
Ian Mora edited this page Jul 21, 2021
·
2 revisions
You will need some tools before the installation of this system:
- Download or clone SIAP repository on your computer
# clone the repository
git clone https://github.com/ianmora97/SIAP
- Change your Git branch to
admin
# clone the repository
git checkout admin
- Browse the specific module system you are going to work (admin, client or teach)
# to work on admin
cd admin/
..
# to work on client
cd client/
..
- Install Node Modules with npm from
package.json
# install all node_modules
npm install
- There are different ways to run a server:
# Daemon watching all your js files, this is recommended if you are on development
npm start
..
# Just run the server on the back
npm run serve
- Run Gulp for tasks(optional), you should run this script on the same folder
gulpfile.js
is:
gulp
You are ready to go