You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+2-14Lines changed: 2 additions & 14 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -15,7 +15,6 @@ Although the frontend consists of a single app, the code is structured into diff
15
15
-`utils` contains commonly used utilities, used throughout the App.
16
16
-`stories` storybook stories.
17
17
-`test` App unit tests.
18
-
-`travis_scripts` Deployment scripts.
19
18
20
19
## Getting Started
21
20
@@ -49,8 +48,6 @@ Optional config values:
49
48
| STORYBOOK_BASE_PATH | Build path for Storybook stories |
50
49
| PLATFORM_PUBLIC_PATH | Public path for Webpack config. If not defined, relative paths are used. |
51
50
52
-
Use `.travis.yml` to set the production values.
53
-
54
51
### Backend
55
52
56
53
To run the app locally, you must install and start the development environment running on Docker.
@@ -76,7 +73,7 @@ npm version patch # This will get you a tag, too, e.g. v3.1.15.
76
73
git push master
77
74
```
78
75
79
-
At this point it's a good idea to check that Travis confirms all tests are passing. Then, for example if the new version is `3.1.15`,
76
+
At this point it's a good idea to check that GitHub Actions confirms all tests are passing. Then, for example if the new version is `3.1.15`,
80
77
81
78
```
82
79
git push v3.1.15
@@ -94,7 +91,7 @@ npm version patch
94
91
git push master
95
92
```
96
93
97
-
At this point it's a good idea to check that Travis confirms all tests are passing. Then, for example if the new version is `3.1.15`,
94
+
At this point it's a good idea to check that GitHub Actions confirms all tests are passing. Then, for example if the new version is `3.1.15`,
98
95
99
96
```
100
97
git push v3.1.15
@@ -104,15 +101,6 @@ git push v3.1.15
104
101
105
102
The project contains a Storybook including stories from the main components. The Storybook can be run with `npm run storybook` and built with `npm run build-storybook`. Storybook should be accessible after running `npm run storybook` at http://localhost:6006 or on your network at http://10.200.10.1:6006
106
103
107
-
## Deployment
108
-
109
-
- When production builds:
110
-
- Webpack creates `.map`-file in `dist` -directory with bundled JS
111
-
- Travis has a script container (Runs when deploying in production)
112
-
- Creates a new release in Sentry by `TRAVIS_TAG`
113
-
- Pushes source map -file from `dist` into Sentry with tagged release
114
-
- Removes the `.map`-file so it doesn't end up in production
115
-
116
104
### Sentry
117
105
118
106
JavaScript error tracking from Sentry helps developers easily fix and prevent JavaScript errors in production as part of your commit-deploy-iterate workflow. Ask a powerful developer for access to the Sentry alerts.
0 commit comments