Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/dariadia/yii2basic_homework
Yii2 Calendar with the admin module. Geekbrains coursework.
https://github.com/dariadia/yii2basic_homework
calendar composer database yii yii2
Last synced: 6 days ago
JSON representation
Yii2 Calendar with the admin module. Geekbrains coursework.
- Host: GitHub
- URL: https://github.com/dariadia/yii2basic_homework
- Owner: dariadia
- License: bsd-3-clause
- Archived: true
- Created: 2019-11-23T09:55:38.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2020-11-28T09:19:02.000Z (about 4 years ago)
- Last Synced: 2024-09-22T22:01:55.517Z (4 months ago)
- Topics: calendar, composer, database, yii, yii2
- Language: JavaScript
- Homepage:
- Size: 805 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
Yii 2 Basic. Project: Calendar
### Via this app, one can:
- Register;
- Add events to the calendar;
- View events;
- *(*With the proper permissions)* edit/delete events;Yii 2 Basic Project Template is a skeleton [Yii 2](http://www.yiiframework.com/) application best for
rapidly creating small projects.The template contains the basic features including user login/logout and a contact page.
It includes all commonly used configurations that would allow you to focus on adding new
features to your application.[![Latest Stable Version](https://img.shields.io/packagist/v/yiisoft/yii2-app-basic.svg)](https://packagist.org/packages/yiisoft/yii2-app-basic)
[![Total Downloads](https://img.shields.io/packagist/dt/yiisoft/yii2-app-basic.svg)](https://packagist.org/packages/yiisoft/yii2-app-basic)
[![Build Status](https://travis-ci.org/yiisoft/yii2-app-basic.svg?branch=master)](https://travis-ci.org/yiisoft/yii2-app-basic)DIRECTORY STRUCTURE
-------------------assets/ contains assets definition
commands/ contains console commands (controllers)
config/ contains application configurations
controllers/ contains Web controller classes
mail/ contains view files for e-mails
models/ contains model classes
runtime/ contains files generated during runtime
tests/ contains various tests for the basic application
vendor/ contains dependent 3rd-party packages
views/ contains view files for the Web application
web/ contains the entry script and Web resourcesREQUIREMENTS
------------The minimum requirement by this project template that your Web server supports PHP 5.4.0.
INSTALLATION
------------### With Docker
Update your vendor packages
docker-compose run --rm php composer update --prefer-dist
Run the installation triggers (creating cookie validation code)docker-compose run --rm php composer install
Start the containerdocker-compose up -d
You can then access the application through the following URL:http://127.0.0.1:8000
**NOTES:**
- Minimum required Docker engine version `17.04` for development (see [Performance tuning for volume mounts](https://docs.docker.com/docker-for-mac/osxfs-caching/))
- The default configuration uses a host-volume in your home directory `.docker-composer` for composer caches