Initial commit

This commit is contained in:
2025-02-18 21:56:51 +03:00
commit b56e6b5e46
19 changed files with 6998 additions and 0 deletions

14
backend/index.js Normal file
View File

@@ -0,0 +1,14 @@
require('dotenv').config();
const express = require('express');
const { ethers } = require('ethers');
const app = express();
const port = process.env.PORT || 3000;
app.get('/', (req, res) => {
res.send('Добро пожаловать в DApp-for-Business API');
});
app.listen(port, () => {
console.log(`Сервер запущен на http://localhost:${port}`);
});