mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-05-19 17:14:57 +00:00
24 lines
267 B
Markdown
24 lines
267 B
Markdown
# DocumentList demo
|
|
|
|
Install:
|
|
|
|
```
|
|
npm install
|
|
```
|
|
|
|
Update host and credentials
|
|
|
|
**src/main.ts**
|
|
```ts
|
|
login() {
|
|
let host = 'http://myalfrescoip';
|
|
let credentials = { "userId": "admin", "password": "admin" };
|
|
...
|
|
}
|
|
```
|
|
|
|
Run the project:
|
|
|
|
```
|
|
npm start
|
|
``` |