2017 © Pedro Peláez
 

library skeleton

Skeleton part of Froq!

image

froq/skeleton

Skeleton part of Froq!

  • Tuesday, November 28, 2017
  • by k-gun
  • Repository
  • 1 Watchers
  • 0 Stars
  • 3 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 3 Versions
  • 0 % Grown

The README.md

Install Sample

~$ mkdir -p /to/the/froq-project ; cd /to/the/froq-project \
   ; git clone git@github.com:froq/sample.git . \
   ; rm -rf ./.git/ ./LICENSE ./README.md \
   ; composer install

Local Test

# as current user
~$ php -S localhost:8080 bin/server.php
# or with public (static) directory
~$ php -S localhost:8080 -t pub/ bin/server.php

# as another user
~$ sudo -u www-data php -S localhost:8080 bin/server.php
# or with public (static) directory
~$ sudo -u www-data php -S localhost:8080 -t pub/ bin/server.php

Virtual Host

# Apache
<VirtualHost *:80>
  ServerName froq-project.local
  DocumentRoot /to/the/froq-project/pub
  <Directory /to/the/froq-project/pub>
    Options +FollowSymLinks
    AllowOverride All
    Require all granted
  </Directory>
</VirtualHost>

# Nginx
server {
  index index.php;
  server_name froq-project.local;
  root /to/the/froq-project/pub;
  location / {
    try_files $uri $uri/ /index.php?$args;
  }
  # ... rest of config stuff
}

And add following line to /etc/hosts file., (*1)

127.0.0.100 froq-project.local

And just open http://froq-project.local link., (*2)

The Versions

28/11 2017

dev-master

9999999-dev https://github.com/froq/skeleton

Skeleton part of Froq!

  Sources   Download

GNU General Public License v3.0

The Requires

 

skeleton froq

28/11 2017

2.0.1

2.0.1.0 https://github.com/froq/skeleton

Skeleton part of Froq!

  Sources   Download

GNU General Public License v3.0

The Requires

 

skeleton froq

22/08 2017

2.0.0

2.0.0.0 https://github.com/froq/skeleton

Skeleton part of Froq!

  Sources   Download

GNU General Public License v3.0

The Requires

 

skeleton froq