Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/shawon922/laravel-shopify-app
https://github.com/shawon922/laravel-shopify-app
Last synced: 5 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/shawon922/laravel-shopify-app
- Owner: shawon922
- Created: 2023-11-30T21:27:24.000Z (12 months ago)
- Default Branch: master
- Last Pushed: 2024-04-19T18:29:29.000Z (7 months ago)
- Last Synced: 2024-04-19T19:39:58.425Z (7 months ago)
- Language: PHP
- Size: 307 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Getting started
## Installation
Please check the official laravel installation guide for server requirements before you start. [Official Documentation](https://laravel.com/docs/10.x/installation)
Clone the repository
git clone [email protected]:shawon922/laravel-shopify-app.git
Switch to the repo folder
cd laravel-shopify-app
Install all the dependencies using the composer
composer install
Copy the example env file and make the required configuration changes in the .env file
cp .env.example .env
Generate a new application key
php artisan key:generate
Update the following variables in the .env file
SHOPIFY_API_KEY=
SHOPIFY_API_SECRET=Run the database migrations (**Set the database connection in .env before migrating**)
php artisan migrate
Start the local development server
php artisan serve
You can now access the server at http://localhost:8000
**TL;DR command list**
git clone [email protected]:gothinkster/laravel-shopify-app.git
cd laravel-shopify-app
composer install
cp .env.example .env
php artisan key:generate
**Make sure you set the correct database connection information before running the migrations** [Environment variables](#environment-variables)php artisan migrate
php artisan serve