Skip to content

Commit

Permalink
add helpers to run in dev mode
Browse files Browse the repository at this point in the history
  • Loading branch information
eric-burel committed Jun 14, 2021
1 parent daf4c07 commit a91f910
Show file tree
Hide file tree
Showing 5 changed files with 752 additions and 1 deletion.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
node_modules/
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ cd ./meteor-backend
# git checkout demo/with-next-frontend
# Install if not yet done:
meteor npm install
cp ./sample_settings.json ./settings.json
meteor npm run start -- --port=3001
# Remember to also read ./meteor-backend/README.md to continue the setup
```
Expand Down
2 changes: 1 addition & 1 deletion next-frontend
25 changes: 25 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
{
"name": "vulcan-meteor-next-transition",
"version": "0.0.1",
"description": "This repository demoes using a Vulcan Next frontend with a legacy Vulcan Meteor backend. This is targeted at existing Vulcan application that needs a progressive migration.",
"main": "index.js",
"scripts": {
"start:backend": "cd ./meteor-backend; meteor npm run start -- --port=3001",
"start:frontend": "cd ./next-frontend; open-cli http://localhost:3000/meteor-demo; yarn run dev",
"start": "concurrently \"yarn run start:backend\" \"yarn run start:frontend\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/VulcanJS/vulcan-meteor-next-transition.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/VulcanJS/vulcan-meteor-next-transition/issues"
},
"homepage": "https://github.com/VulcanJS/vulcan-meteor-next-transition#readme",
"devDependencies": {
"concurrently": "^6.2.0",
"open-cli": "^6.0.1"
}
}
Loading

0 comments on commit a91f910

Please sign in to comment.