Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/blockpc/mvc

first framework using poo
https://github.com/blockpc/mvc

Last synced: 3 days ago
JSON representation

first framework using poo

Awesome Lists containing this project

README

        

# Framework BlockPC

Framework en PHP

## Instal Tailwind CSS
```batch
npm init -y
npm install -D tailwindcss@latest autoprefixer@latest postcss-cli@latest cssnano
npx tailwindcss init -p
```

## Compile CSS
- `'dev': 'npx tailwindcss -i resources/css/tailwind.css -o public/css/tailwind.css'`
- `'build': 'postcss resources/css/tailwind.css -o public/css/tailwind.css'`
- `'watch': 'TAILWIND_MODE=watch postcss resources/css/tailwind.css -o public/css/tailwind.css -w --verbose'`
- `'prod': 'NODE_ENV=production postcss resources/css/tailwind.css -o public/css/tailwind.css'`

## Run migrations
- `php ./cli/migrations.php -m -s -f`

-m: For run migrations
-s: For run seeder, optional
-f: Refresh database, optional