Skip to content

edrisranjbar/edicodes

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

EdiCodes Website

This repository contains both the frontend and backend code for the EdiCodes website.

Project Structure

  • edicodes/ - Frontend Vue.js application
  • back-end/ - Laravel backend API

Setup Instructions

Backend Setup (Laravel)

  1. Navigate to the backend directory:

    cd back-end
  2. Install PHP dependencies:

    composer install
  3. Copy the environment file:

    cp .env.example .env
  4. Generate application key:

    php artisan key:generate
  5. Configure your database in .env and run migrations:

    php artisan migrate
  6. Install frontend dependencies and build:

    npm install
    npm run build

Frontend Setup (Vue.js)

  1. Navigate to the frontend directory:

    cd edicodes
  2. Install dependencies:

    npm install
  3. Copy the environment file:

    cp .env.example .env
  4. Start the development server:

    npm run dev

Development

  • Backend API runs on: http://localhost:8000
  • Frontend development server runs on: http://localhost:3000

About

personal website using laravel

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published