undo wrong bug fix, fix docs

This commit is contained in:
Aidan 2025-01-30 21:49:30 -05:00
parent e95d11839e
commit 22251b09d0
2 changed files with 3 additions and 3 deletions

View File

@ -26,7 +26,7 @@ A simple blogging platform built with Next.js, shadcn/ui and Tailwind CSS.
```bash ```bash
cd server/ cd server/
npm install # bun is not suggested bun install
``` ```
**Copy example .env:** **Copy example .env:**
@ -44,7 +44,7 @@ A simple blogging platform built with Next.js, shadcn/ui and Tailwind CSS.
Then, simply execute the below command and follow the prompts: Then, simply execute the below command and follow the prompts:
```bash ```bash
node setup.js # bun is not suggested bun setup.js
``` ```
4. **Start server** 4. **Start server**

View File

@ -1,4 +1,4 @@
import Database from 'sqlite3'; import { Database } from 'sqlite3';
import readline from 'readline'; import readline from 'readline';
import fs from 'fs'; import fs from 'fs';
import figlet from 'figlet'; import figlet from 'figlet';