The frontend component of PuffPastry, meant to interface with the backend, which in turn interfaces with the smart contract.
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

2 месяцев назад
123456789101112131415161718
  1. # Environment
  2. Make sure you've set up the database before you do this. This project uses PostgreSQL with Diesel on the backend.
  3. I use [localtunnel](https://github.com/localtunnel/localtunnel) for my local development environment. You'll need to set up a Telegram bot using BotFather, and take the following steps:
  4. * Change the `bot-username` prop on the `LoginWidget` tag within `BrandBar.vue` to the username of the bot you set up with BotFather.
  5. * Send the command `/setdomain` to BotFather, and select the bot you set up previously.
  6. * Run localtunnel with `lt --port 5173`.
  7. * Send the domain provided by localtunnel to BotFather.
  8. After these steps have been completed, you will be able to authenticate with Telegram via stored sessions.
  9. # Vue 3 + TypeScript + Vite
  10. This template should help get you started developing with Vue 3 and TypeScript in Vite. The template uses Vue 3 `<script setup>` SFCs, check out the [script setup docs](https://v3.vuejs.org/api/sfc-script-setup.html#sfc-script-setup) to learn more.
  11. Learn more about the recommended Project Setup and IDE Support in the [Vue Docs TypeScript Guide](https://vuejs.org/guide/typescript/overview.html#project-setup).