An open API service indexing awesome lists of open source software.

https://github.com/nirnejak/ai-talks-website

AI Talks website
https://github.com/nirnejak/ai-talks-website

Last synced: 2 months ago
JSON representation

AI Talks website

Awesome Lists containing this project

README

          


AI Talks

---

## Available Scripts

**Install Dependencies**

```bash
npm install
```

**Install Git Hooks** (won't let you commit if there are any ESLint issues)

```bash
npm run prepare
```

**Start Development Server**

```bash
npm run dev
```

**Lint all the files**

```bash
npm run lint
```

**Format all files with Prettier**

```bash
npm run format
```

**Check TypeScript issues**

```bash
npm run type-check
```

**Build for Production**

```bash
npm run build
```

**Start Production Server**

```bash
npm start
```

---