feat: add readme

This commit is contained in:
Sergey Krylov 2025-02-13 07:52:28 +03:00
parent e5448049cb
commit ee17e7d56a
2 changed files with 38 additions and 25 deletions

23
.gitlab-ci.yml Normal file
View File

@ -0,0 +1,23 @@
image: node:22.13.0
pages:
before_script:
- npm install --global corepack@latest
- corepack enable
- corepack prepare pnpm@latest-10 --activate
- pnpm config set store-dir .pnpm-store
script:
- pnpm install
- pnpm run build
- cp -r dist/* public/
artifacts:
paths:
- public
cache:
key:
files:
- pnpm-lock.yaml
paths:
- .pnpm-store
rules:
- if: $CI_COMMIT_REF_NAME == $CI_DEFAULT_BRANCH

View File

@ -1,29 +1,19 @@
# Rsbuild project # firebase-auth-vue
## Setup ## JWT Авторизация с Firebase
[![Watch the video](https://img.youtube.com/vi/x43D8CGh31g/0.jpg)](https://www.youtube.com/watch?v=x43D8CGh31g)
Install the dependencies: ### Функционал
- Авторизация
- Перехваты запросов
```bash
pnpm install
```
## Get started ### Стек
- Vue 3
Start the dev server: - Pinia
- PrimeVue
```bash - VueRouter
pnpm dev - Axios
``` - Firebase
- Rsbuild
Build the app for production: - TypeScript
```bash
pnpm build
```
Preview the production build locally:
```bash
pnpm preview
```