Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/kevinzunigacuellar/lang-learn
https://github.com/kevinzunigacuellar/lang-learn
Last synced: 15 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/kevinzunigacuellar/lang-learn
- Owner: kevinzunigacuellar
- Created: 2023-03-07T17:09:35.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2023-05-02T16:42:06.000Z (over 1 year ago)
- Last Synced: 2024-10-07T23:21:11.876Z (about 1 month ago)
- Language: TypeScript
- Homepage: https://lang-learning.vercel.app
- Size: 397 KB
- Stars: 2
- Watchers: 2
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
Awesome Lists containing this project
README
# Language Learning
## Getting started
To get started, run the following commands:
1. Install dependencies:
```bash
pnpm install
```2. Add project credentials:
- Create a file called ".env" in the root folder with the following contents:
```bash
# .env
DATABASE_URL=
FIREBASE_PROJECT_ID=
FIREBASE_PRIVATE_KEY_ID=
FIREBASE_PRIVATE_KEY=
```- Replace the values with the credentials provided in the assignment.
3. Generate a prisma client (this creates a client that allows us to interact with the database):
```bash
pnpm run prisma:generate
```3. Start the development server:
```bash
pnpm run dev
```