A NestJS-based backend service for meme coin operations.
This project provides API services for meme coin operations, including:
- Blockchain interaction
- User management
- Token operations
- Transaction handling
$ npm install
# development
$ npm run start
# watch mode
$ npm run start:dev
# production mode
$ npm run start:prod
# unit tests
$ npm run test
# e2e tests
$ npm run test:e2e
# test coverage
$ npm run test:cov
Copy .env.example
to .env
and update the values according to your environment:
- Database configuration
- JWT configuration
- Blockchain configuration
- Server configuration
After starting the application, visit /api
for the Swagger documentation.
- TypeScript support
- PostgreSQL integration
- Web3 integration
- JWT authentication
- Swagger API documentation
- Environment configuration
- Unit and E2E testing setup