File tree Expand file tree Collapse file tree 5 files changed +261
-144
lines changed Expand file tree Collapse file tree 5 files changed +261
-144
lines changed Original file line number Diff line number Diff line change 1
1
# Graasp App: Text Analysis
2
2
3
- ```
4
- Create a env.development file with:
3
+ Create a ` .env.development ` file with:
5
4
6
- PORT=3005
7
- VITE_GRAASP_APP_KEY=<app KEY>
8
- VITE_ENABLE_MOCK_API=true
9
- VITE_API_HOST=<request address for the backend>
5
+ ``` dotenv
6
+ VITE_PORT=3005
7
+ VITE_GRAASP_APP_KEY=<app KEY>
8
+ VITE_ENABLE_MOCK_API=true
9
+ VITE_API_HOST=<request address for the backend>
10
10
```
11
11
12
12
[ ![ GitHub package.json version] ( https://img.shields.io/github/package-json/v/graasp/graasp-app-text-analysis?color=green&style=flat-square )] ( https://github.com/graasp/graasp-app-text-analysis )
15
15
[ ![ All Contributors] ( https://img.shields.io/badge/all_contributors-2-orange.svg?style=flat-square )] ( #contributors- )
16
16
<!-- ALL-CONTRIBUTORS-BADGE:END -->
17
17
18
-
19
18
## Contributors ✨
20
19
21
20
Thanks goes to these wonderful people ([ emoji key] ( https://allcontributors.org/docs/en/emoji-key ) ):
Original file line number Diff line number Diff line change 12
12
"dependencies" : {
13
13
"@emotion/react" : " 11.11.1" ,
14
14
"@emotion/styled" : " 11.11.0" ,
15
- "@graasp/apps-query-client" : " 3.3.0 " ,
16
- "@graasp/sdk" : " 3.3.0 " ,
15
+ "@graasp/apps-query-client" : " ^3.4.15 " ,
16
+ "@graasp/sdk" : " ^4.12.2 " ,
17
17
"@graasp/ui" : " 4.1.1" ,
18
18
"@mui/icons-material" : " 5.11.16" ,
19
19
"@mui/lab" : " 5.0.0-alpha.136" ,
Original file line number Diff line number Diff line change 2
2
/* tslint:disable */
3
3
4
4
/**
5
- * Mock Service Worker (1.3.2 ).
5
+ * Mock Service Worker (1.3.3 ).
6
6
* @see https://github.com/mswjs/msw
7
7
* - Please do NOT modify this file.
8
8
* - Please do NOT serve this file on production.
Original file line number Diff line number Diff line change @@ -30,6 +30,7 @@ export const MEMBERS: { [key: string]: CompleteMember } = {
30
30
updatedAt : new Date ( ) . toISOString ( ) ,
31
31
email : 'anna@email.com' ,
32
32
extra : { } ,
33
+ enableSaveActions : true ,
33
34
} ,
34
35
BOB : {
35
36
id : '1f0a2774-a965-4b97-afb4-bccc3796e060' ,
@@ -39,6 +40,7 @@ export const MEMBERS: { [key: string]: CompleteMember } = {
39
40
updatedAt : new Date ( ) . toISOString ( ) ,
40
41
email : 'bob@email.com' ,
41
42
extra : { } ,
43
+ enableSaveActions : true ,
42
44
} ,
43
45
} ;
44
46
You can’t perform that action at this time.
0 commit comments