Coder Social home page Coder Social logo

egora's Introduction

Egora installation

Contribute to The Worldwide Stock-Market of Ideas!

Cloud Installation Tutorial

Or

Get PHP 7.4, not 8.

Install Laravel with Composer:

git clone https://github.com/CezaryJurewicz/Egora

cd Egora

composer update

php artisan serve

rename .env.example to .env

If the images URLs are missing a protocol:

open Egora\app\Providers\AppServiceProvider.php

in the boot() function

comment out this line

       //URL::forceScheme(env('FORCE_SCHEME', 'https'));

Install MariaDB

create database laravel;

If there's a DB driver issue:

Go to php.ini in your php installation folder

Remove the ; from ;extension=pdo_mysql.so

php artisan migrate

php artisan migrate:status

php artisan migrate

register on Egora Either set up a mailing service (Mailgun), or change a database for your user entry

use laravel;
select * from users;
update users set email_verified_at="2021-02-03 00:01:56";

Initial Configuration

All of the configuration files for the Laravel framework are stored in the config directory. Each option is documented, so feel free to look through the files and get familiar with the options available to you.

Laravel needs almost no additional configuration out of the box. You are free to get started developing! However, you may wish to review the config/app.php file and its documentation. It contains several options such as timezone and locale that you may wish to change according to your application.

Environment Based Configuration

Since many of Laravel's configuration option values may vary depending on whether your application is running on your local computer or on a production web server, many important configuration values are defined using the .env file that exists at the root of your application.

Your .env file should not be committed to your application's source control, since each developer / server using your application could require a different environment configuration. Furthermore, this would be a security risk in the event an intruder gains access to your source control repository, since any sensitive credentials would get exposed.

For more information about the .env file and environment based configuration, check out the full configuration documentation.

Next Steps

First, we strongly recommend becoming familiar with how Laravel works by reading the following documentation:

you are going to use Laravel to route requests to your application and render your frontend via Blade templates

you may want to check out our documentation on routing, views, or the Eloquent ORM.

If you are using Laravel as a full stack framework, we also strongly encourage you to learn how to compile your application's CSS and JavaScript using Laravel Mix.

egora's People

Contributors

russam avatar ilyadorosh avatar bxct avatar dependabot[bot] avatar cezaryjurewicz avatar

Watchers

James Cloos avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.