Advertisement
Justman10000

Manage Hangar

Jun 8th, 2023 (edited)
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.56 KB | None | 0 0
  1. // To install
  2. # You need Maven      (https://pastebin.com/xdcMjbRT)
  3. # You need Java       (https://pastebin.com/QciQuZYS)
  4. # You need NodeJS     (https://pastebin.com/Rf1vVKsR)
  5. # You need PostgreSQL (https://pastebin.com/hf61pyhi)
  6.  
  7. mkdir /home/Hangar
  8. cd /home/Hangar
  9. git init
  10. git remote add origin https://github.com/HangarMC/Hangar.git
  11. git pull origin staging
  12.  
  13. cd frontend
  14. pnpm install
  15. pnpm nuxt build
  16. bash
  17. cd .output/server
  18. pnpm install
  19. exit
  20. node .output/server/index.mjs
  21.  
  22. cd /home/Hangar/backend
  23. mvn spring-boot:run
  24.  
  25. // To uninstall
  26. rm -r /home/Hangar
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement