Files
send/app
HrBingR e32ea7d0aa Added the ability to define a custom footer via environment variables
Added the CUSTOM_FOOTER_TEXT and CUSTOM_FOOTER_URL environment variables.

If undefined, the default translated footer will display.

If only CUSTOM_FOOTER_TEXT is defined, only this defined text will display in place of the normal footer text.

If only CUSTOM_FOOTER_URL is defined then the defined URL will display.

If both variables are defined, the defined text will display as a link to the defined URL.
2022-08-11 23:04:45 +02:00
..
2021-03-15 19:56:51 +01:00
2018-12-18 13:55:46 -08:00
2019-07-29 15:26:11 -07:00
2022-05-02 13:38:16 +02:00
2019-03-12 08:37:43 -07:00
2021-07-08 21:20:27 +02:00
2019-11-12 19:09:07 +01:00
2019-08-02 12:03:53 -07:00
2021-04-12 15:19:02 +02:00

Application Code

app/ contains the browser code that gets bundled into app.[hash].js. It's got all the logic, crypto, and UI. All of it gets used in the browser, and some of it by the server for server side rendering.

The main entrypoint for the browser is main.js and on the server routes.js is imported by /server/routes/pages.js

  • pages contains display logic an markup for pages
  • routes contains route definitions and logic
  • templates contains ui elements smaller than pages