Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/vitorhonna/nlw-unite-nodejs
Rocketseat NLW Unite - Node.js
https://github.com/vitorhonna/nlw-unite-nodejs
Last synced: about 6 hours ago
JSON representation
Rocketseat NLW Unite - Node.js
- Host: GitHub
- URL: https://github.com/vitorhonna/nlw-unite-nodejs
- Owner: vitorhonna
- License: mit
- Created: 2024-04-02T03:30:19.000Z (8 months ago)
- Default Branch: main
- Last Pushed: 2024-04-03T04:49:20.000Z (8 months ago)
- Last Synced: 2024-04-03T05:36:41.957Z (8 months ago)
- Language: TypeScript
- Size: 2.93 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Rocketseat NLW Unite - Node.js: pass.in
O pass.in é uma aplicação de **gestão de participantes em eventos presenciais**.
A ferramenta permite que o organizador cadastre um evento e abra uma página pública de inscrição.
Os participantes inscritos podem emitir uma credencial para check-in no dia do evento.
O sistema fará um scan da credencial do participante para permitir a entrada no evento.
## Requisitos### Requisitos funcionais
- [ ] O organizador deve poder cadastrar um novo evento;
- [ ] O organizador deve poder visualizar dados de um evento;
- [ ] O organizador deve poser visualizar a lista de participantes;
- [ ] O participante deve poder se inscrever em um evento;
- [ ] O participante deve poder visualizar seu crachá de inscrição;
- [ ] O participante deve poder realizar check-in no evento;### Regras de negócio
- [ ] O participante só pode se inscrever em um evento uma única vez;
- [ ] O participante só pode se inscrever em eventos com vagas disponíveis;
- [ ] O participante só pode realizar check-in em um evento uma única vez;### Requisitos não-funcionais
- [ ] O check-in no evento será realizado através de um QRCode;
## Setup
- Install Node.js v20.11.1 using nvm and set it up for usage in the project:
```bash
nvm install 20.11.1
nvm use 20.11.1
```- Clone the repository:
```bash
git clone
cd
```- Create a `.env` file in the root of the project with the following environment variables:
```env
echo "DATABASE_URL="file:./dev.db"" > .env
```- Install the project dependencies:
```bash
npm install
```- Execute the Prisma migrations to create the tables in the database:
```bash
npx prisma migrate dev
```- Run the development server:
```bash
npm run dev
```- To access the Prisma GUI and see the table contents, run:
```bash
npx prisma studio
```