Start
Express Installation
1
Manual Installation
1
2
4
Clone the Novel codebase
mkdir [YOUR SAAS DIRECTORY]
cd [YOUR SAAS DIRECTORY]
git clone [email protected]:madewithnovel/novel.git
rm -rf web
git clone [email protected]:madewithnovel/next.js.git web
npm install
mv .env.sample .env5
Set-up your Database
Install Docker
Docker Available
docker run --name novel-db \
-e POSTGRES_PASSWORD=postgres \
-e POSTGRES_USER=postgres \
-e POSTGRES_DB=novel \
-p 5433:5433 \
-d postgres:17Add the Connection String to the Environment file `.env`
DB_HOST=postgres://postgres:postgres@localhost:5433/novelNext steps
Last updated
