This project contains the source code for the yiiframework.com Website.
If you want to contribute please get in touch with us using the issue tracker. We will set up some contributions guidelines soon.
Before you start, make sure you have installed composer and Node.js. If you are on Debian or Ubuntu you might also want to install the libnotify-bin package, which is used by Gulp to inform you about its status.
If you intend to use the Pageres client to generate screen shots for testing purposes, you need to install the pageres.cli
tool globally:
npm install --global pageres-cli
And then you can use the script run_pageres.sh
at the root of the source directory to generate screen shots.
# clone the project
git clone https://github.com/yiisoft-contrib/yiiframework.com.git
cd yiiframework.com
# install the composer asset plugin globally, if you haven't done so before
composer global require "fxp/composer-asset-plugin:~1.1.1"
# install the dependent composer packages
composer install
# install gulp globally if you haven't done so before
npm install -g gulp-cli
# install browsersync globally if you haven't done so before
npm install -g browser-sync
# At this stage if you're on Windows and having trouble
npm install -g npm
npm -v
# should output 3.x.x
# Also make sure you have MS C++ build tools: https://www.microsoft.com/en-us/download/details.aspx?id=48159
# install dependent NPM modules
npm install
# initialize the application, choose "development"
./init
# build contributors page (this may take some time as it downloads a lot of user avatars from github)
./yii contributors/generate
# build js/css files
gulp build
# If you're on Windows you have to manually symlink or copy
# %appdata%/npm/node_modules/browser-sync to your app's node_modules
# The next step is for building the API documentation and the Guide files.
# It is optional for the site to be working but you will have no API docs and Guide.
# This step includes cloning the Yii 1 and Yii 2 repositories and a lot of computation,
# so you might want to skip it on the first install.
#
# This also requires an instance of elasticsearch to be configured and running
# (if you do not have it, it will still run, but the site search will not work).
# It also assumes you have pdflatex installed for building PDF guide docs.
#
# You may also build only parts of the docs, run make help for the available commands.
make docs
Define a host name local.yiiframework.com
that points to localhost
.
Define a virtual host local.yiiframework.com
which uses yiiframework.com/web
as its document root.
If you are using Apache, add the following configuration for the yiiframework.com/web
folder to hide the
entry script:
RewriteEngine on
# if a directory or a file exists, use it directly
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
# otherwise forward it to index.php
RewriteRule . index.php
This section covers notes for deployment on a server, you may not need this for your dev env. OS is assumed to be debian Jessie.
apt-get install texlive-full git nodejs npm make
The contributors list and the avatar thumbnails is generated by a console command:
./yii contributors/generate
It will connect to Github via the API and fetch a list of contributors, generate data/contributors.json
and thumbnail images of the user avatars in data/avatars
and finally invoke Gulp to generate a sprite image and Sass code.
It would be a good idea to set up a Cron job to run that once in a while - perhaps once each month.
If you generate a personal Github token (from your Github profile settings section) you can tell the contributors/generate function to make use of it by creating a file in the data
directory (@app/data) called github.token
with the token pasted into it (one line, no line-break). That should solve most issues related to the API rate limit imposed by Github.
commands/ contains console commands (controllers)
config/ contains application configurations
controllers/ contains Web controller classes
data/ contains important data generated by different commands
env/ contains environment-dependent files
assets/
src/
fonts/ contains fonts
scss/ contains Sass source files
js/ contains JS source files
mail/ contains view files for e-mails
models/ contains model classes
node_modules/ contains installed NPM packages
runtime/ contains files generated during runtime
scripts/ contains shell scripts
vendor/ contains dependent 3rd-party packages
views/ contains view files for the Web application
web/ contains the entry script and Web resources
- During development, run
gulp
to watch view, Sass and JS file changes and automatically build target CSS/JS files. This command will also launch a browser window which is connected to browsersync. - At any time, run
gulp build
to manually rebuild target CSS/JS files from source Sass/JS files. - If you only want to watch for changes, you can issue the command
gulp watch
- To build the assets for production, specify the
production
flag:gulp build --production
- Use Sass files to define CSS styles.
- All Sass files should be put under
assets/src/scss
and listed inassets/src/scss/all.scss
. - Usually each controller corresponds to a single Sass file whose name is the same as the controller ID.
For example, the
GuideController
has a Sass file named_guide.scss
. - All Sass source files, except
all.scss
should have a leading underscore in the name. Sass will ignore files starting with an underscore so that only one CSS file will be produced (all.css). - For information about where each file should be put, please consult the master include file
all.scss
.
- All JS files should be put under
assets/src/js
and listed inconfig.yml
. - Usually each controller corresponds to a single JS file whose name is the same as the controller ID.
For example, the
GuideController
has a JS file namedguide.js
.