Skip to content
This repository has been archived by the owner on Mar 12, 2021. It is now read-only.
/ InTechNet.Pupil Public archive

[Contest project] InTechNet front-end in Angular - Pupil side

Notifications You must be signed in to change notification settings

pBouillon/InTechNet.Pupil

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

26 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

InTechNet.Pupil

InTechNet front-end in Angular - Pupil side

Installation

You can find the detailed documentation in french here

Prerequisites

In order to correctly proceed to the installation you will need:

  • An up to date version of npm
  • C# 8.0
  • An IDE such as VS Code

Clone the repository

Start by creating a local copy of this repository

~$ git clone https://github.com/pBouillon/InTechNet.Pupil/

If you want to work on new features, you can create your very own fork

Install dependencies

To install all dependencies, simply run the following

~$ cd InTechNet.Pupil/intechnet-pupils
InTechNet.Pupil/intechnet-pupils$ npm install

Compile the project

When you still are in the intechnet-pupils/ folder, run the following:

InTechNet.Pupil/intechnet-pupils$ ng build

The compilation result will be available in the dist/ folder

Run the SPA

In order to run the application locally, execute:

InTechNet.Pupil/intechnet-pupils$ ng serve --open

A new tab will be opened with the application running in development mode. By default the used port is 4201.

This is not suitable to deploy the website. If you want to serve your product in production mode, see the related Angular guide.