https://github.com/fabdoc27/alcatraz
Alcatraz simple blog platform where readers can enjoy articles, managed entirely by one owner who creates and organizes all content.
https://github.com/fabdoc27/alcatraz
laravel laravel-breeze php sqlite tailwindcss
Last synced: 3 months ago
JSON representation
Alcatraz simple blog platform where readers can enjoy articles, managed entirely by one owner who creates and organizes all content.
- Host: GitHub
- URL: https://github.com/fabdoc27/alcatraz
- Owner: Fabdoc27
- Created: 2024-08-29T01:22:17.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2024-12-22T08:19:42.000Z (over 1 year ago)
- Last Synced: 2025-03-14T02:13:38.115Z (over 1 year ago)
- Topics: laravel, laravel-breeze, php, sqlite, tailwindcss
- Language: PHP
- Homepage:
- Size: 196 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 git@github.com:Fabdoc27/Alcatraz.git
cd Alcatraz
```
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:**
```shell
php artisan migrate
```
6. **Seed the database:**
```shell
php artisan db:seed
```
7. **Start the development server:**
```shell
npm run dev
php artisan serve
```