2024-10-13 16:30:51 +00:00
|
|
|
const mainHTML = global.marked.parse(`# Welcome to ContentCraft!
|
2024-10-13 15:52:27 +00:00
|
|
|
|
|
|
|
ContentCraft is similar to WordPress, except different.
|
|
|
|
You can do pretty much anything with it using the *"addon-scripts"* folder
|
|
|
|
(like this page here, and making other pages!)
|
|
|
|
|
|
|
|
We included a few basic libraries in the index.js for you, but feel free to
|
2024-10-13 16:30:51 +00:00
|
|
|
add more libraries into your addons, such as quick.db if you need to spin up a database.
|
2024-10-13 15:52:27 +00:00
|
|
|
|
|
|
|
Have a great day.
|
|
|
|
|
2024-10-13 16:30:51 +00:00
|
|
|
From all of us at Sneed Group.
|
|
|
|
|
|
|
|
PS: PRO TIP - USE "global" WHEN YOU WANT TO USE VARIABLES CROSS-ADDON.`)
|
2024-10-13 15:52:27 +00:00
|
|
|
|
2024-10-13 16:30:51 +00:00
|
|
|
global.app.get('/', (req, res) => {
|
2024-10-13 15:52:27 +00:00
|
|
|
res.send(mainHTML);
|
|
|
|
});
|