master
bhaskar 2 years ago
parent b5b90e80da
commit d73a781c34

@ -50,6 +50,7 @@
<!----------------**************************--------------------->
<rapi-doc
spec-url="http://35.207.198.4:3000/documentation/json"
show-header = 'false'
allow-authentication ="true"
>

@ -15,7 +15,8 @@ exports.options = {
// We have to change this beacause this is running on local
// we have to run on this on swagger
//host: "localhost:5000", //Devlopemnt host on lcoal
host: "35.207.198.4:3000", //Production for swagger
host: "35.207.198.4:3000", //Production for swagger
schemes: ["http"],
consumes: ["application/json"],
produces: ["application/json"],

@ -358,6 +358,8 @@ fastify.register(require("./routes/forTestingRoute"));
const start = async () => {
try {
await fastify.listen(3000, "0.0.0.0");
fastify.log.info(`listening on ${fastify.server.address().port}`);
fastify.log.info(`server listening on ${fastify.config}`);

Loading…
Cancel
Save