Skip to content

Commit

Permalink
updates to dev/prod split
Browse files Browse the repository at this point in the history
  • Loading branch information
traceypooh committed Mar 28, 2024
1 parent 0f55f5c commit e7c61bf
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 11 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/cicd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ jobs:
cicd:
uses: internetarchive/cicd/.github/workflows/cicd.yml@main
with:
NOMAD_VAR_HOSTNAMES: '["emularity-engine"]'
NOMAD_VAR_PORTS: '{ 80 = "http" }'
NO_TEST: true
secrets:
NOMAD_TOKEN: ${{ secrets.NOMAD_TOKEN }}
NOMAD_TOKEN_PROD: ${{ secrets.NOMAD_TOKEN_PROD }}
13 changes: 4 additions & 9 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,14 @@

## example items
- typical type of item:
https://ia-petabox-csp.archive.org/details/gg_Star_Wars_1993LucasArts_Tiertex_Design_Studio_U.S._GoldUS
https://ia-petabox.archive.org/details/gg_Star_Wars_1993LucasArts_Tiertex_Design_Studio_U.S._GoldUS

- most challenging new `ruffle` type of item:
https://ia-petabox-csp.archive.org/details/flash_loituma
https://ia-petabox.archive.org/details/flash_loituma

## current deployment
- https://emularity-engine.dev.archive.org/
- https://emularity-engine.prod.archive.org/
- https://internetarchive-emularity-engine.dev.archive.org/
- https://emularity-engine.ux-b.archive.org/

## there are 3 related git repos & deployments:
- https://github.com/internetarchive/emularity-engine
Expand All @@ -20,8 +20,3 @@ https://ia-petabox-csp.archive.org/details/flash_loituma
- https://archive.org/serve/emularity_engine_v1
- https://archive.org/serve/emularity_config_v1
- https://archive.org/serve/emularity_bios_v1





2 changes: 1 addition & 1 deletion loader.js
Original file line number Diff line number Diff line change
Expand Up @@ -711,7 +711,7 @@ var Module = null;
// and need to keep that "artificial" extra domain-ish name to avoid CORS issues with IE/Safari (tracey@archive)
var get_cors_url = function(item, path) {
if (item === 'emularity-engine' || item === 'emularity-config' || item === 'emularity-bios')
return '//' + item + '.dev.archive.org/' + (path ? '/' + path : '');
return '//' + item + '.ux-b.archive.org/' + (path ? '/' + path : '');

return '//cors.archive.org/cors/' + item + (path ? '/' + path : '');
}
Expand Down

0 comments on commit e7c61bf

Please sign in to comment.