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
- Host: GitHub
- URL: https://github.com/nirnejak/ai-talks-website
- Owner: nirnejak
- License: mit
- Created: 2024-05-30T10:21:37.000Z (about 2 years ago)
- Default Branch: master
- Last Pushed: 2024-06-01T11:07:15.000Z (about 2 years ago)
- Last Synced: 2025-03-02T11:52:35.172Z (over 1 year ago)
- Language: TypeScript
- Homepage: https://ai-talks-website.vercel.app
- Size: 3.77 MB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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
```
---