You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
495 B
33 lines
495 B
2 years ago
|
import fastify from 'fastify'
|
||
|
import dotenv from 'dotenv'
|
||
|
import path from 'path'
|
||
|
|
||
|
// getting .env
|
||
|
dotenv.config({ path: path.join(path.resolve(), '/../../.env') })
|
||
|
|
||
|
// create server
|
||
|
const server = fastify()
|
||
|
|
||
|
/**
|
||
|
* plugins
|
||
|
*
|
||
|
*
|
||
|
*/
|
||
|
|
||
|
import etaPlugin from './plugins/eta.js'
|
||
|
server.register(etaPlugin)
|
||
|
|
||
|
/**
|
||
|
* routing
|
||
|
*
|
||
|
*
|
||
|
*/
|
||
|
|
||
|
import indexHttp from './http/index.js'
|
||
|
import staticHttp from './http/static.js'
|
||
|
|
||
|
server
|
||
|
.register(indexHttp)
|
||
|
.register(staticHttp)
|
||
|
|
||
|
export default server
|