Skip to content

Latest commit

 

History

History
33 lines (27 loc) · 827 Bytes

README.md

File metadata and controls

33 lines (27 loc) · 827 Bytes

Cleanough

A code-sharing social app where developers collaborate, receive feedback, and improve their code together.

Getting Started

First, Clone the repository from GitHub:

git clone https://github.com/cleanough/cleanough

Install dependencies via npm:

cd cleanough
npm install

Copy the .env.example file to .env and update the database connection settings to match your environment:

cp .env.example .env

Here are the default admin email and password that will be seeded into the database, but these can be changed in the .env file.

SUPER_ADMIN_EMAIL=[email protected]
SUPER_ADMIN_USERNAME=admin
SUPER_ADMIN_PASSWORD=admin

Start the development server:

npm run dev

Open http://localhost:3000 with your browser to see the result.