https://github.com/condef5/cojos-app-web
https://github.com/condef5/cojos-app-web
Last synced: 4 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/condef5/cojos-app-web
- Owner: condef5
- Created: 2023-02-18T02:35:29.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2023-06-12T16:58:27.000Z (about 3 years ago)
- Last Synced: 2025-11-17T14:40:46.207Z (7 months ago)
- Language: TypeScript
- Size: 307 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Cojos app

## Setup development
1. You need these programs:
- [NodeJs](https://nodejs.org/en/)
- [Yarn](https://yarnpkg.com/)
- [Sqlite](https://www.sqlite.org/index.html)
2. Add the `.env` file
```sh
cp .env.example .env
```
3. Create database file
```
touch prisma/data.db
```
4. Run migrations
```sh
yarn prisma migrate dev
```
5. Run the seeds
```sh
yarn prisma db seed
```
6. Start dev server:
```sh
yarn dev
```
7. Go to http://localhost:3000/
8. Use these credentials:
- Email: `frankcondezo@gmail.com`
- Password: `letmein`