Skip to content

Flint15/authentication-project

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

25 Commits
 
 
 
 
 
 

Repository files navigation

Authentication Project ⸜(。˃ ᵕ ˂ )⸝♡

🛠️ Tech Stack

Frontend

Backend

🚀 Getting Started

Prerequisites

  • Node.js (v18.0.0 or higher)
  node --version  # Should be v18+
  • npm (v9.0.0 or higher)
  npm --version  # Should be v9+
  • Python (3.9 or higher)
  python --version  # Should be 3.9+

Installation

  1. Clone the repository
   git clone https://github.com/Flint15/authentication-project.git
   cd authentication-project
  1. Install frontend dependencies
   npm install
  1. Set up Python backend
   cd backend

   # Create virtual environment
   python -m venv venv

   # Activate virtual environment
   # On Windows:
   venv\Scripts\activate
   # On macOS/Linux:
   source venv/bin/activate

   # Install dependencies
   pip install -r requirements.txt

Running the Application

Run Backend and Frontend Separately

Terminal 1 - Backend:

cd backend
source venv/bin/activate  # or venv\Scripts\activate on Windows
python server.py

Server runs at http://127.0.0.1:5000

Terminal 2 - Frontend Compilation (watch mode):

npm run dev

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published