DOLLY AI
DollyDemoMin.mp4
Midjourney-esque text-to-image generator using DALL•E 3
The Design:
Recommended:
- NVM to manage installations of Node and NPM
- Node v20
1️⃣ If you'd like to clone down the project code for yourself, create a folder on your PC where you wish to save the repo.
cd folderIWantToSaveIn
git clone https://github.com/rkmiller131/dolly.git
2️⃣ Now change directories into the folder you just cloned and open with your IDE (Example: VSCode)
cd dolly
code .
3️⃣ Once you're in the root directory for the project, install all dependencies:
npm install
4️⃣ **Note, there is an example.env
file you will need to configure your own secret keys for.
- Sign up for MongoDB Atlas and paste your database connection path in the
.env
after running the command below.
cp example.env .env
5️⃣ And run the project on http://localhost:3000/
with:
npm run dev