Licensing information viewable in the LICENSE file.
DEL requires Node.js 14.
nodemon is optional and allows you to use the npm run dev
command which is ideal in development, nodemon auto restarts on file save.
PM2 is optional and allows you to use the npm run pm2
command which is ideal if you wish to run DEL in production.
A MongoDB instance is required - it must match the configuration in the settings.json
file.
Redis must be installed for caching to work, the site will not function correctly without it - it must match the configuration in the settings.json
file.
Install all of the dependencies by running npm i
command.
- Rename
settings.example.json
tosettings.json
and fill it out appropriately, changing anything you need to change. - (Optional) In addition to this you may wish to change some of the things in the
variables.ts
file located insrc/Util/Function
.
NOTE: Please ensure the main website has been setup and is operational first, this is dependant on that.
When you first start DEL you will need to run the following command: npm run compile && npm run editor-compile
Every time you make a change to any of the .ts
files you will need to run the npm run compile
command to ensure everything is up to date.
We reccomend when running DEL in production you use the npm run pm2
command, however you can still run DEL using the standard npm run start
command.
We reccomend you run DEL using the npm run start
command.