mirror of
https://github.com/SillyTavern/SillyTavern.git
synced 2025-06-05 21:59:27 +02:00
New onboarding experience
This commit is contained in:
@@ -267,6 +267,12 @@ app.get("/", function (request, response) {
|
||||
app.get("/notes/*", function (request, response) {
|
||||
response.sendFile(__dirname + "/public" + request.url + ".html");
|
||||
});
|
||||
app.get('/get_faq', function(_, response) {
|
||||
response.sendFile(__dirname + "/faq.md");
|
||||
});
|
||||
app.get('/get_readme', function(_, response) {
|
||||
response.sendFile(__dirname + "/readme.md");
|
||||
});
|
||||
|
||||
//**************Kobold api
|
||||
app.post("/generate", jsonParser, async function (request, response_generate = response) {
|
||||
|
Reference in New Issue
Block a user