An open API service indexing awesome lists of open source software.

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.

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
```