Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/rust-sol-dev/ai_content_generator
AI content generator for project description, introduction & marketing content using openAI integration
https://github.com/rust-sol-dev/ai_content_generator
next next14 node openai supabase tailwind typescript
Last synced: about 22 hours ago
JSON representation
AI content generator for project description, introduction & marketing content using openAI integration
- Host: GitHub
- URL: https://github.com/rust-sol-dev/ai_content_generator
- Owner: Rust-Sol-Dev
- Created: 2024-03-28T19:53:34.000Z (10 months ago)
- Default Branch: master
- Last Pushed: 2024-07-24T01:26:17.000Z (6 months ago)
- Last Synced: 2024-08-07T10:10:12.253Z (5 months ago)
- Topics: next, next14, node, openai, supabase, tailwind, typescript
- Language: TypeScript
- Homepage:
- Size: 24.4 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
### Install NVM on Ubuntu 20.04
# 1. Installing NVM on Ubuntu
```bash
$ sudo apt install curl
$ curl https://raw.githubusercontent.com/creationix/nvm/master/install.sh | bash
$ source ~/.bashrc
```# 2. Installing Node using NVM
```bash
$ nvm install node
$ nvm install 20.9.0
$ nvm install --lts
```# 3. Working with NVM
```bash
$ nvm ls
$ nvm ls-remote
$ nvm use 20.9.0
$ nvm run default --version
```# 4. Uninstall Node Version
```bash
$ nvm uninstall 20.9.0
```### Installation next-app
> Automatic Installation
```bash
$ npx create-next-app@latest
$ npm install --global yarn
$ yarn create next-app
```
> Starting the server
```bash
$ yarn run dev
```
### Then install the Supabase client library: supabase-js
```bash
$ npm install @supabase/supabase-js
```
### Integrating openai API with nextjs
```bash
npm install openai
```