Skip to content

Commit de1d6a3

Browse files
committed
- updated repository information, cleaned up old code
1 parent c534302 commit de1d6a3

5 files changed

Lines changed: 41 additions & 91 deletions

File tree

.docker/docker-compose.commands.yml

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -25,16 +25,6 @@ services:
2525
extends:
2626
service: base
2727
command: npm run build:production
28-
# Building and archiving for deployment
29-
build_for_deployment:
30-
extends:
31-
service: base
32-
command: bash -O extglob -c "
33-
npm run build:production &&
34-
mkdir -p ./build ./dist/public &&
35-
mv ./dist/!(public) ./dist/public &&
36-
cp -f ./.docker/docker-compose.deployment.yml ./dist/docker-compose.yml &&
37-
npx jszip -o ./build/archive.zip ./dist/** && find ./dist/** -delete"
3828
# Run the linter
3929
lint:
4030
extends:

.templates/docker/template.docker-compose.commands.yml

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -25,16 +25,6 @@ services:
2525
extends:
2626
service: base
2727
command: npm run build:production
28-
# Building and archiving for deployment
29-
build_for_deployment:
30-
extends:
31-
service: base
32-
command: bash -O extglob -c "
33-
npm run build:production &&
34-
mkdir -p ./build ./dist/public &&
35-
mv ./dist/!(public) ./dist/public &&
36-
cp -f ./.docker/docker-compose.deployment.yml ./dist/docker-compose.yml &&
37-
npx jszip -o ./build/archive.zip ./dist/** && find ./dist/** -delete"
3828
# Run the linter
3929
lint:
4030
extends:

README.md

Lines changed: 39 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,49 @@
1-
# docker-react
1+
# docker-react-typescript-starter
22

33
![Lint](https://github.com/bevenio/docker-react/actions/workflows/nodejs_lint.yml/badge.svg?event=push)
44
![Test](https://github.com/bevenio/docker-react/actions/workflows/nodejs_test.yml/badge.svg?event=push)
55
![Build](https://github.com/bevenio/docker-react/actions/workflows/nodejs_build.yml/badge.svg?event=push)
66

77
## General
88

9+
### About
10+
11+
This project is a docker based starter repository aiming for enterprise solutions. The only dependencies needed are **docker** and **make** script support.
12+
13+
### Included Technologies/Libraries
14+
15+
- Node _LTS/17_
16+
- React _18_
17+
- Webpack _4_
18+
- Redux
19+
- Typescript
20+
- EsLint
21+
- Jest
22+
- Axios
23+
- React testing library
24+
- Browser devtools
25+
26+
### Included Features
27+
28+
- PWA support
29+
- Translation service
30+
- Logging service
31+
- Serviceworker caching
32+
- Webworker support
33+
- Sass support
34+
- Static assets
35+
- Conditional routing
36+
- Redux localstorage syncing
37+
- Lazy loading
38+
- Serverless sharing state between browser windows
39+
- File generation from templates with package.json and project.json data
40+
- Development, production and test builds
41+
- Github actions integration
42+
- Hot module replacement
43+
- VSCode integration
44+
- Code linting and autoformatting
45+
- Single docker image as output file
46+
947
### Setting up this project
1048

1149
```zsh

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
2-
"name": "docker-react",
3-
"version": "2.1.1",
2+
"name": "docker-react-typescript-starter",
3+
"version": "2.1.2",
44
"description": "",
55
"author": "Benjamin Brachmann",
66
"license": "MIT",

src/services/router/utility/router-utility.module.tsx

Lines changed: 0 additions & 68 deletions
This file was deleted.

0 commit comments

Comments
 (0)