Skip to content

Commit

Permalink
gitpod fix
Browse files Browse the repository at this point in the history
  • Loading branch information
tysonrm committed Nov 18, 2022
1 parent aded895 commit 7abe6ad
Show file tree
Hide file tree
Showing 4 changed files with 24 additions and 4 deletions.
Binary file added .start.sh.swp
Binary file not shown.
Binary file modified forkrun
Binary file not shown.
10 changes: 10 additions & 0 deletions repo.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
'use strict'

const express = require('express')
const app = express()
const port = 8000

app.use(express.json())
app.use(express.static('dist'))

app.listen(port, () => console.log('listening on', port))
18 changes: 14 additions & 4 deletions start.sh
Original file line number Diff line number Diff line change
@@ -1,8 +1,18 @@
# create symlink between aegis-host and aegis vs using npm

#export FORKRUN_CMD=/Users/tysonmidboe/.nvm/versions/node/v18.12.0/bin/node
#export FORKRUN_ARG=/Users/tysonmidboe/aegis-app/repo.js
export FORKRUN_CMD=/usr/bin/open
export FORKRUN_ARG=http://localhost
#export FORKRUN_ARG=/Users/tysonmidboe/aegis-app/repo.jsjjj

./forkrun && yarn link && cd ../aegis-host && yarn link @module-federation/aegis && yarn start
nvm install --lts
nvm use --lts

export FORKRUN_CMD=$NVM_BIN/node
export FORKRUN_ARG=$PWD/repo.js

gcc forkrun.c -o forkrun
./forkrun
yarn link
cd ../aegis-host
yarn build
yarn link @module-federation/aegis
yarn start

0 comments on commit 7abe6ad

Please sign in to comment.