Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/fabdoc27/crud-simplified
https://github.com/fabdoc27/crud-simplified
laravel tailwindcss
Last synced: 14 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/fabdoc27/crud-simplified
- Owner: Fabdoc27
- Created: 2024-05-26T09:54:00.000Z (6 months ago)
- Default Branch: main
- Last Pushed: 2024-09-04T17:44:29.000Z (3 months ago)
- Last Synced: 2024-09-06T01:05:14.613Z (3 months ago)
- Topics: laravel, tailwindcss
- Language: Blade
- Homepage:
- Size: 293 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Getting Started
Follow these steps to set up the project:
1. **Clone the repository and navigate to the directory:**
```shell
git clone [email protected]:Fabdoc27/Crud-Simplified.git
cd Crud-Simplified
```2. **Install the dependencies:**
```shell
composer install
npm install
```3. **Create the environment file:**
```shell
cp .env.example .env
```4. **Generate the application key:**
```shell
php artisan key:generate
```5. **Run the database migrations and seed the database:**
```shell
php artisan migrate --seed
```6. **Start the development server:**
```shell
npm run dev
php artisan serve
```