Skip to content

Latest commit

 

History

3 Commits

Folders and files

NameName
Last commit message
Last commit date
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Blackomni

A full-stack application built with React and Node.js.


Installation

  1. Clone the repository:

    git clone https://github.com/your-username/blackomni.git
    cd blackomni
  2. Install client dependencies:

    cd client
    npm install
  3. Install server dependencies:

    cd ../server
    npm install

Development Workflow

Run both applications concurrently in separate terminal windows or tabs:

Start backend server:

cd server
npm run dev
# Server running at http://localhost:3000

Start frontend application:

cd client
npm run dev
# Client running at http://localhost:5173

Code Quality & Formatting

Both client and server use ESLint Flat Config (eslint.config.js) integrated with Prettier.

Run linting checks (inside /client or /server):

npm run lint

Automatically fix formatting and syntax issues:

npx eslint . --fix

Publishing to a New Repository

If you want to strip this project's existing Git history and push it to your own repository:

# 1. Remove the old Git tracking completely
rm -rf .git

# 2. Start a fresh Git history
git init

# 3. Connect to your new repository
git remote add origin <new-repo-url>

# 4. Save and push your files
git add .
git commit -m "Initial commit"
git branch -M main
git push -u origin main

About

Full-stack JavaScript app (React + Node) with linting, formatting, and a clean dev workflow out of the box.

Topics

Resources

Stars

0 stars

Watchers

0 watching

Forks

Releases

Packages

Contributors

Languages