all lists on lists.proxmox.com
 help / color / mirror / Atom feed
* [pbs-devel] EXTJS build
@ 2024-08-21  6:32 Turkijan
  2024-08-21  7:06 ` Hannes Laimer
  0 siblings, 1 reply; 4+ messages in thread
From: Turkijan @ 2024-08-21  6:32 UTC (permalink / raw)
  To: Proxmox Backup Server development discussion


[-- Attachment #1.1: Type: text/plain, Size: 129 bytes --]

are there any way to run and build just ui part from PBS source?
I mean Extjs project in www folder.
Anyone let me know.
Regards

[-- Attachment #1.2: Type: text/html, Size: 180 bytes --]

[-- Attachment #2: Type: text/plain, Size: 160 bytes --]

_______________________________________________
pbs-devel mailing list
pbs-devel@lists.proxmox.com
https://lists.proxmox.com/cgi-bin/mailman/listinfo/pbs-devel

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [pbs-devel] EXTJS build
  2024-08-21  6:32 [pbs-devel] EXTJS build Turkijan
@ 2024-08-21  7:06 ` Hannes Laimer
  2024-08-21  9:05   ` Turkijan
  0 siblings, 1 reply; 4+ messages in thread
From: Hannes Laimer @ 2024-08-21  7:06 UTC (permalink / raw)
  To: Proxmox Backup Server development discussion

On Wed Aug 21, 2024 at 8:32 AM CEST, Turkijan wrote:
> are there any way to run and build just ui part from PBS source?
> I mean Extjs project in www folder.
> Anyone let me know.
> Regards

Hey,

if you want to deploy it on the same system where the code is then
```
cd www
make install
```
should work. If you want to install it on a different system just build
the `.deb` file with `make deb`, the alternative is very likely not
worth the effort.

Best regards
Hannes


_______________________________________________
pbs-devel mailing list
pbs-devel@lists.proxmox.com
https://lists.proxmox.com/cgi-bin/mailman/listinfo/pbs-devel


^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [pbs-devel] EXTJS build
  2024-08-21  7:06 ` Hannes Laimer
@ 2024-08-21  9:05   ` Turkijan
  2024-08-26  9:08     ` Dominik Csapak
  0 siblings, 1 reply; 4+ messages in thread
From: Turkijan @ 2024-08-21  9:05 UTC (permalink / raw)
  To: Proxmox Backup Server development discussion


[-- Attachment #1.1: Type: text/plain, Size: 853 bytes --]

Are there any other way to do this? like using xampp or npm

On Wed, Aug 21, 2024 at 2:07 AM Hannes Laimer <h.laimer@proxmox.com> wrote:

> On Wed Aug 21, 2024 at 8:32 AM CEST, Turkijan wrote:
> > are there any way to run and build just ui part from PBS source?
> > I mean Extjs project in www folder.
> > Anyone let me know.
> > Regards
>
> Hey,
>
> if you want to deploy it on the same system where the code is then
> ```
> cd www
> make install
> ```
> should work. If you want to install it on a different system just build
> the `.deb` file with `make deb`, the alternative is very likely not
> worth the effort.
>
> Best regards
> Hannes
>
>
> _______________________________________________
> pbs-devel mailing list
> pbs-devel@lists.proxmox.com
> https://lists.proxmox.com/cgi-bin/mailman/listinfo/pbs-devel
>
>

[-- Attachment #1.2: Type: text/html, Size: 1369 bytes --]

[-- Attachment #2: Type: text/plain, Size: 160 bytes --]

_______________________________________________
pbs-devel mailing list
pbs-devel@lists.proxmox.com
https://lists.proxmox.com/cgi-bin/mailman/listinfo/pbs-devel

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [pbs-devel] EXTJS build
  2024-08-21  9:05   ` Turkijan
@ 2024-08-26  9:08     ` Dominik Csapak
  0 siblings, 0 replies; 4+ messages in thread
From: Dominik Csapak @ 2024-08-26  9:08 UTC (permalink / raw)
  To: Proxmox Backup Server development discussion, Turkijan

On 8/21/24 11:05, Turkijan wrote:
> Are there any other way to do this? like using xampp or npm

just fyi, the ui of pbs/pve/etc. are just combined js files, no bundler
or anything needed..

we just have a more or less static html index file (see index.hbs) which
loads the extjs framework js file, the proxmox-widget-toolkit one
and the project specific one

the make file just `cat's` the files together in a single javascript file

hope this helps

> 
> On Wed, Aug 21, 2024 at 2:07 AM Hannes Laimer <h.laimer@proxmox.com <mailto:h.laimer@proxmox.com>> 
> wrote:
> 
>     On Wed Aug 21, 2024 at 8:32 AM CEST, Turkijan wrote:
>      > are there any way to run and build just ui part from PBS source?
>      > I mean Extjs project in www folder.
>      > Anyone let me know.
>      > Regards
> 
>     Hey,
> 
>     if you want to deploy it on the same system where the code is then
>     ```
>     cd www
>     make install
>     ```
>     should work. If you want to install it on a different system just build
>     the `.deb` file with `make deb`, the alternative is very likely not
>     worth the effort.
> 
>     Best regards
>     Hannes
> 
> 
>     _______________________________________________
>     pbs-devel mailing list
>     pbs-devel@lists.proxmox.com <mailto:pbs-devel@lists.proxmox.com>
>     https://lists.proxmox.com/cgi-bin/mailman/listinfo/pbs-devel <https://lists.proxmox.com/cgi-bin/
>     mailman/listinfo/pbs-devel>
> 
> 
> _______________________________________________
> pbs-devel mailing list
> pbs-devel@lists.proxmox.com
> https://lists.proxmox.com/cgi-bin/mailman/listinfo/pbs-devel



_______________________________________________
pbs-devel mailing list
pbs-devel@lists.proxmox.com
https://lists.proxmox.com/cgi-bin/mailman/listinfo/pbs-devel

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2024-08-26  9:08 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2024-08-21  6:32 [pbs-devel] EXTJS build Turkijan
2024-08-21  7:06 ` Hannes Laimer
2024-08-21  9:05   ` Turkijan
2024-08-26  9:08     ` Dominik Csapak

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.
Service provided by Proxmox Server Solutions GmbH | Privacy | Legal