Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/blockpc/mvc
- Owner: blockpc
- Created: 2020-10-30T11:49:26.000Z (about 4 years ago)
- Default Branch: main
- Last Pushed: 2021-07-09T01:18:47.000Z (over 3 years ago)
- Last Synced: 2024-11-10T21:19:53.285Z (2 months ago)
- Language: CSS
- Size: 694 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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