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
This project was generated with Angular CLI version 12.1.3.
for a dev server. Navigate to http://localhost:4200/
. The app will automatically reload if you change any of the source files.
ng serve
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 :
to build the project. The build artifacts will be stored in the dist/
directory, run :
ng build
to execute the unit tests via Karma, run :
ng test
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
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