Skip to content

Origin CMS for Laravel to kickstart your web applications

License

Notifications You must be signed in to change notification settings

akhileshdarjee/origin-cms

Folders and files

NameName
Last commit message
Last commit date

Latest commit

c556005 · Dec 2, 2021

History

35 Commits
Sep 13, 2021
Mar 27, 2021
Apr 12, 2021
Sep 13, 2021
Sep 13, 2021
Sep 13, 2021
Apr 29, 2021
Mar 27, 2021
Mar 27, 2021
Mar 27, 2021
Mar 27, 2021
Mar 27, 2021
Mar 27, 2021
Mar 27, 2021
Apr 5, 2021
Dec 2, 2021
Mar 27, 2021
Mar 27, 2021
Aug 28, 2021
Aug 28, 2021
Aug 28, 2021
Mar 27, 2021
Mar 27, 2021
Apr 29, 2021

Repository files navigation

Installation

  1. git clone -b master https://github.com/akhileshdarjee/origin-cms.git

  2. Update new git project URL

  3. composer install

  4. cp .env.example .env

  5. php artisan key:generate

  6. (Optional) Naming your app - php artisan app:name {YOUR_APP_NAME}

  7. Set database credentials in '.env' file

  8. composer dumpautoload -o

  9. php artisan migrate:refresh --seed

  10. php artisan storage:link

Permissions

Local (Development)

cd /path/to/your/laravel/directory
sudo find . -type f -exec chmod 664 {} \;
sudo find . -type d -exec chmod 755 {} \;

sudo chown -R :www-data app/
sudo chmod -R ug+rwx app/
sudo chown -R :www-data bootstrap/cache
sudo chmod -R ug+rwx bootstrap/cache
sudo chown -R :www-data database/migrations
sudo chmod -R ug+rwx database/migrations
sudo chown -R :www-data storage/
sudo chmod -R ug+rwx storage/
sudo chown -R :www-data resources/lang
sudo chmod -R ug+rw resources/lang

Production (Server)

cd /path/to/your/laravel/directory
sudo find . -type f -exec chmod 664 {} \;
sudo find . -type d -exec chmod 755 {} \;

sudo chown -R :www-data bootstrap/cache
sudo chmod -R ug+rwx bootstrap/cache
sudo chown -R :www-data storage/
sudo chmod -R ug+rwx storage/
sudo chown -R :www-data resources/lang
sudo chmod -R ug+rw resources/lang

Now, you've completed the configuration step ✌️

  1. Serve it on your local server, php artisan serve --port=8081

  2. Hit the URL: http://localhost:8081/admin

Enjoy...!!! 👍