Skip to content

Latest commit

 

History

History
74 lines (54 loc) · 2 KB

README.md

File metadata and controls

74 lines (54 loc) · 2 KB

Installation for backend

Django CI

To get started first acces the virtual env with : macOs/Linux : source env/bin/activate, or windows : .\env\Scripts\activate.

if you don't have a virtual enviroment yet, you can create one with :

python -m venv env

unless you have a virtual enviroment already installed, for mac & linux use pyhton3.

then navigate the the root folder of django project and lunch the command :

pip install -r requirements.txt / pip3 install -r requirements.txt

, and then

python3 manage.py runserver / py manage.py runserver

to run the server locacly

Frontend

This project was generated with Angular CLI version 12.1.3.

Development server

for a dev server. Navigate to http://localhost:4200/. The app will automatically reload if you change any of the source files.

ng serve

Code scaffolding

ng generate component component-name

to generate a new component. You can also use ng generate directive|pipe|service|class|guard|interface|enum|module, run :

Build run

to build the project. The build artifacts will be stored in the dist/ directory, run :

ng build

Running unit tests

to execute the unit tests via Karma, run :

ng test

Running end-to-end tests

to execute the end-to-end tests via a platform of your choice. To use this command, you need to first add a package that implements end-to-end testing capabilities, run :

ng e2e

Further help

To get more help on the Angular CLI use the command below or go check out the Angular CLI Overview and Command Reference page.

ng help