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
A Team Randomizer built using Angular, installable as a progressive web app (PWA).
2
+
A Team Randomizer built using Angular and Bootstrap, installable as a progressive web app (PWA).
3
+
Supports setting names using URL query parameters:
4
+
```url
5
+
https://vb.example.org?names=Me,Myself,I
6
+
```
3
7
4
8
## Development
5
9
@@ -11,6 +15,12 @@ ng serve
11
15
12
16
Once the server is running, open your browser and navigate to `http://localhost:4200/`. The application will automatically reload whenever you modify any of the source files.
13
17
18
+
Alternatively, to open the server to the network instead of just localhost, use
19
+
20
+
```bash
21
+
npm run serve
22
+
```
23
+
14
24
## Building
15
25
16
26
To build the project run:
@@ -20,12 +30,4 @@ ng build
20
30
```
21
31
22
32
This will compile your project and store the build artifacts in the `dist/` directory.
23
-
As this is a static site, simply move the contents of browser/ to a directory that can be served by nginx or apache.
24
-
25
-
## Running unit tests
26
-
27
-
To execute unit tests with the [Karma](https://karma-runner.github.io) test runner, use the following command:
28
-
29
-
```bash
30
-
ng test
31
-
```
33
+
As this is a static site, simply move the contents of `dist/vb/browser/` to a directory that can be served by nginx or apache.
0 commit comments