REMINDER
AppDrag CLI tool is now available!
-
Hey Community, we are happy to announce that our CLI tool is now available on NPM
https://www.npmjs.com/package/appdragdeploy your full-stack apps to the cloud. Work with your local tools (VS Code, Atom, ...) and build process, then push your compiled code to your app in appdrag
This tool is recommended for:
- Develop locally with your usual tools (VS Code, Atom, ...) and build process (Webpack, ...)
- Setup a CI/CD pipeline
- Setup an external backup of your app
- Export/Import full-stack projects
-
@Joseph-Benguira this is amazing! Thank you!
Can you share any tips for a workflow using VS Code and Webpack?
Do you need to set up build scripts, etc. for VS Code to push the changed file to the server?
Thanks in advance for any tips you can give me. I am not familiar with CI/CD workflows and I'm not sure where to start integrating this. There is a lot of information for git, but not for appdrag
-
Hey Daniel,
our VSCODE extension is finished! Please check here:
https://github.com/AppDrag/appdrag-vscode-extension
FYI it's not yet available on VSCODE marketplace (we need to submit it and wait for validation from MS) but you can still install it manuallyabout your question for a workflow with VSCODE/WEBPACK:
when you already have created/configured your webpack script you then usually to include it in your package.json > scripts > build
then run it with "npm run build"
you can add another script in package.json called "deploy" that will call appdrag-cli like this "appdrag push fs", this will push all the files from your local FS to appdragso you can run:
npm run build
npm run deploy