- src/configurations is the folder of all existing portals
- src/configuration/config-shell is a portal template that can be copied and filled out where the TODOs are written.
To run a portal locally, use the linkConfig script, which copies configuration files for the portal that you specify
(replace <portal-name> with one of the subfolder names, like nf
or adknowledgeportal
):
./linkConfig.sh <portal-name>
To run a portal with a local version of SRC run the following commands:
# In Synapse-React-Client/
# Symlink the package itself as well as the local react, react-router, and react-router-dom packages
$ yarn link
$ cd node_modules/react
$ yarn link
$ cd ../react-router
$ yarn link
$ cd ../react-router-dom
$ yarn link
$ cd ../../
$ yarn build # last step is to build the project
# In portals/
$ yarn link synapse-react-client
$ yarn link react
$ yarn link react-router
$ yarn link react-router-dom
$ ./linkConfig <portal-name>
# Note that you can make changes in the SRC project and reflect
# them in the portals by running yarn build again. The portals project
# can continue to run as you make changes.
To unlink synapse react-client run rm -r node_modules
and yarn install
. You can also manually unlink the packages by using yarn unlink.
Note - Jenkins is accessible only through VPN, reach out to IT to set this up.
When a pull request is merged, the following will occur:
If package.json
was updated all the staging websites will be built automatically.
If any file under src/configurations/portal-name/*
is updated then the staging site for portal-name will update.
e.g. updating src/configurations/adknoweldgeportal/routesConfig.ts
will update adknowledgeportal staging.
Job Naming:
Each portal has its own staging job, named deploy-portalname-staging
, e.g. deploy-cancercomplexity-staging
Making a new staging job
- Copy one of the staging jobs
- Change the
Source Code Management/Additional Behaviours/Included Regions
section to only include that portal's configuration folder. - Change the
Build/Execute Shell
section to build the portal
Run deploy-portal-production
with parameters, using the portal's folder name, e.g. 'nf' or 'cancercomplexity'
This will copy everything from the staging bucket to the production bucket for that portal. Approval from the portal owner must be obtained before running this job.
The code that is run on jenkins is in run.sh
Usage:
Sync current with staging:
$ ./run.sh push-staging [portal-name]
Sync production with production:
$ ./run.sh WARNING-push-production [portal-name]