Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
S
source-demo-front
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
open-project-framework
opf-virtual-company-v1
source-demo-front
Compare revisions
dc1e770b97c0b9a9f109c2d9b101a40db8ecfd36 to master
Compare revisions
Changes are shown as if the
source
revision was being merged into the
target
revision.
Learn more about comparing revisions.
Source
open-project-framework/opf-virtual-company-v1/source-demo-front
Select target project
No results found
master
Select Git revision
Branches
master
Swap
Target
narsu-group/source-demo-front
Select target project
open-project-framework/opf-virtual-company-v1/source-demo-front
narsu-group/source-demo-front
2 results
dc1e770b97c0b9a9f109c2d9b101a40db8ecfd36
Select Git revision
Branches
master
Show changes
Only incoming changes from source
Include changes to target since source was created
Compare
Commits on Source (8)
Update .gitlab-ci.yml
· 56b63400
N5608
authored
5 years ago
56b63400
Update .gitlab-ci.yml
· 48a926e2
N5608
authored
5 years ago
48a926e2
Update README.md
· 6a586595
N5608
authored
5 years ago
6a586595
Update .gitlab-ci.yml
· 0ee0b015
N5608
authored
5 years ago
0ee0b015
Update .gitlab-ci.yml
· d8460ac2
N5608
authored
5 years ago
d8460ac2
Update .gitlab-ci.yml
· c0bdc91a
N5608
authored
5 years ago
c0bdc91a
Update .gitlab-ci.yml
· 0ca0846a
Marko Rintamäki
authored
4 years ago
0ca0846a
Update README.md
· ede6feaf
Marko Rintamäki
authored
4 years ago
ede6feaf
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
.gitlab-ci.yml
+5
-94
5 additions, 94 deletions
.gitlab-ci.yml
README.md
+2
-0
2 additions, 0 deletions
README.md
with
7 additions
and
94 deletions
.gitlab-ci.yml
View file @
ede6feaf
#This declares the pipeline stages
image
:
node:13.1
stages
:
-
build
-
test
-
deploy
cache
:
paths
:
-
node_modules/
build
:
stage
:
build
script
:
-
npm install
-
npm run-script build
tags
:
-
docker
test
:
stage
:
test
script
:
-
echo "Running react test suite......"
tags
:
-
docker
license_management
:
stage
:
test
image
:
name
:
"
registry.gitlab.labranet.jamk.fi//gitlab-org/security-products/license-management:$CI_SERVER_VERSION_MAJOR-$CI_SERVER_VERSION_MINOR-stable"
name
:
gcr.io/kaniko-project/executor:debug
entrypoint
:
[
"
"
]
variables
:
SETUP_CMD
:
$LICENSE_MANAGEMENT_SETUP_CMD
allow_failure
:
true
script
:
-
/run.sh analyze .
artifacts
:
reports
:
license_management
:
$CI_PROJECT_DIR/gl-license-management-report.json
expire_in
:
1 week
dependencies
:
[]
-
echo "{\"auths\":{\"$CI_REGISTRY\":{\"username\":\"$CI_REGISTRY_USER\",\"password\":\"$CI_REGISTRY_PASSWORD\"}}}" > /kaniko/.docker/config.json
-
/kaniko/executor --context $CI_PROJECT_DIR --dockerfile $CI_PROJECT_DIR/Dockerfile --destination $CI_REGISTRY_IMAGE:$CI_COMMIT_TAG
only
:
refs
:
-
branches
variables
:
-
$GITLAB_FEATURES =~ /\blicense_management\b/
except
:
variables
:
-
$LICENSE_MANAGEMENT_DISABLED
tags
:
-
docker
code_quality
:
stage
:
test
image
:
docker:stable
allow_failure
:
true
services
:
-
docker:stable-dind
variables
:
DOCKER_DRIVER
:
overlay2
DOCKER_TLS_CERTDIR
:
"
"
script
:
-
|
if ! docker info &>/dev/null; then
if [ -z "$DOCKER_HOST" -a "$KUBERNETES_PORT" ]; then
export DOCKER_HOST='tcp://localhost:8080'
fi
fi
-
docker run
--env SOURCE_CODE="$PWD"
--volume "$PWD":/code
--volume /var/run/docker.sock:/var/run/docker.sock
"registry.gitlab.labranet.jamk.fi/gitlab-org/security-products/codequality:12-0-stable" /code
artifacts
:
reports
:
codequality
:
$CI_PROJECT_DIR/gl-code-quality-report.json
expire_in
:
1 week
when
:
always
dependencies
:
[]
only
:
refs
:
-
branches
-
tags
except
:
variables
:
-
$CODE_QUALITY_ENABLE
tags
:
-
docker
deploy
:
stage
:
deploy
script
:
-
echo 'Deploy'
-
master
tags
:
-
docker
-
general
\ No newline at end of file
This diff is collapsed.
Click to expand it.
README.md
View file @
ede6feaf
...
...
@@ -2,6 +2,8 @@
[

](http://realworld.io)
> ### React + Redux codebase containing real world examples (CRUD, auth, advanced patterns, etc) that adheres to the [RealWorld](https://github.com/gothinkster/realworld-example-apps) spec and API.
<a
href=
"https://stackblitz.com/edit/react-redux-realworld"
target=
"_blank"
><img
width=
"187"
src=
"https://github.com/gothinkster/realworld/blob/master/media/edit_on_blitz.png?raw=true"
/></a>
<a
href=
"https://thinkster.io/tutorials/build-a-real-world-react-redux-application"
target=
"_blank"
><img
width=
"384"
src=
"https://raw.githubusercontent.com/gothinkster/realworld/master/media/learn-btn-hr.png"
/></a>
...
...
This diff is collapsed.
Click to expand it.