BEGDAR8ZOUHAIR / atlas-web-solutions

video-editing-timeline-react timeline-editor

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Introduction

untitled-video-made-with-clipchamp_iPbwGZ4o.mp4
backend
└── entities
    └── controllers
        ├── userController.js
    └── models
        ├── userModel.js 
    └── routes
         └── userRouter.js

Thanks to this structure, it is easier to maintain and evolve multiple entities (you will rarely have to switch from one folder to another to manage an entity).

The project comes with many built-in features, such as:

  • Authentication with JWT: providing both an access token and a refresh token (sent as a secure http cookie only and stored in the database).

Commande line

npm init

Setup

Usage

*By default, it uses npm to install dependencies.

  • If you prefer another package manager you can pass it as an argument yarn

Then open the project folder and install the required dependencies:

npm init
npm install express

Configuration

Setup your environment variables. In your root directory, you will find a .env:

 .env

Then:

npm  start

The database must be connected and your server must be running. You can start testing and querying the API.

npm run start

Back to top

Directory Structure

backend/
├──controllers/                 # Contains mostly global and reusable logic (such as auth and crud)
├── db/                         # Database, routes and server configurations
├── middlewares/                # Express middlewares
├── routes                      # Contains entity templates (default and user type)
├── models/                     # Custom/global type definitions
└── index.ts                    # App entry point (initializes database connection and express server)

Back to table of Contents

Features

API Endpoints

List of available routes:

Auth routes (public):
POST /api/ - register
POST /api/login - login
GET /api/me - getMe\

User routes (private):
GET /api/users - get all users
GET /api/users/:id - get user by id
PATCH /api/users/:id - update user
DELETE /api/users/:id - delete user\

ZOUHAIR BEGDAR

About

video-editing-timeline-react timeline-editor


Languages

Language:JavaScript 86.3%Language:CSS 12.1%Language:HTML 1.5%