Skip to content
- Install PostgreSQL
- Install Redis Windows https://github.com/redis-windows/redis-windows/releases
- Clone GhostFolio from https://github.com/ghostfolio/ghostfolio.git
- Create database for GhostFolio using psql:
“C:\Program Files\PostgreSQL\18\bin\psql.exe” -h localhost -U postgres
create database ghostfolio;
- copy .env.example .env
- generate ACCESS_TOKEN_SALT:
python -c "import secrets; print(secrets.token_hex(16))"
- generate JWT_SECRET_KEY:
node -e “console.log(require(‘crypto’).randomBytes(32).toString(‘hex’));”
- modify .env
npm install
- npm run database:setup
- start server: npm run start:server
- start client: npm run start:client
- open https://localhost:4200/en in your browser.