Skip to content

enkoki/Anisync

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

129 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Anisync

A simple Next.js project for learning Next.js and practicing team collaboration.

Getting Started

Frontend Part

First, run the development server:

cd frontend/
npm install
npm run dev
# or
pnpm dev
# or
bun dev

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

Backend Part

cd backend/

python -m venv venv

Activate virtual environment (choose the one for your shell)

Linux / macOS (bash/zsh)
source venv/bin/activate
csh
source venv/bin/activate.csh
fish
source venv/bin/activate.fish
Windows PowerShell
.\venv\bin\activate.ps1
Install dependencies
pip install -r requirements.txt
Run the development server
fastapi dev main.py

Open http://localhost:8000 with your browser to see the result. For in-built docs - http://localhost:8000/docs#/

Dummy .env Format

# Database

#For Local Host
DB_USER = " "
DB_PASS = ""
DB_HOST = ""
DB_PORT =  
DB_NAME = ""

# JWT
SECRET_KEY = "" 
ALGORITHM = ""
EXPIRATION_TIME =  

Releases

No releases published

Packages

 
 
 

Contributors