Сделал хоум роут с hello world и ссылкой на доку
Some checks failed
Create and publish a Docker image / build-and-push-server (push) Has been cancelled
Create and publish a Docker image / build-and-push-chart (push) Has been cancelled
Create and publish a Docker image / build-and-push-CR (push) Has been cancelled

This commit is contained in:
Данил 2024-10-12 21:13:41 +03:00
parent 20cefebc0d
commit a697efbbd4
2 changed files with 10 additions and 0 deletions

View file

@ -24,9 +24,11 @@ const fastify = require('fastify')({
const getRateRoute = require('./routes/getRate.js');
const configurationRoutes = require('./routes/configuration.js');
const HomeRoute = require('./routes/home.js');
fastify.register(getRateRoute);
fastify.register(configurationRoutes);
fastify.register(HomeRoute);
fastify.listen(
{