https://github.com/derek486/employeeapp_angular-example
https://github.com/derek486/employeeapp_angular-example
Last synced: about 1 year ago
JSON representation
- Host: GitHub
- URL: https://github.com/derek486/employeeapp_angular-example
- Owner: Derek486
- Created: 2024-01-05T02:51:44.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-01-08T01:48:55.000Z (over 2 years ago)
- Last Synced: 2024-07-06T04:55:37.251Z (almost 2 years ago)
- Language: TypeScript
- Size: 147 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Proyecto hecho en Angular + Django / Express
## Instalación del proyecto de Angular:
```
cd Frontend
npm install
ng serve
```
## Instalación del proyecto de Django:
### Entorno virtual:
```
cd Backend
python -m venv myenv
.\myenv\Scripts\activate
pip install -r requirements.txt
```
### Proyecto:
```
python manage.py migrate
python manage.py runserver
```
## Instalación del proyecto de Express:
```
cd Backend_Express
npm i
npm run dev
```