Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/arodiss/15x4
15x4.org
https://github.com/arodiss/15x4
Last synced: 7 days ago
JSON representation
15x4.org
- Host: GitHub
- URL: https://github.com/arodiss/15x4
- Owner: arodiss
- Created: 2016-01-06T17:25:10.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2022-06-21T17:41:54.000Z (over 2 years ago)
- Last Synced: 2023-03-24T11:57:29.474Z (almost 2 years ago)
- Language: JavaScript
- Size: 11 MB
- Stars: 16
- Watchers: 5
- Forks: 7
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
15x4
====15x4 is community running free popular science lectures in CIS and Europe. More at [15x4.org](15x4.org)
### How to run locally
After cloning project from git, you need to install [composer package manager](https://getcomposer.org/doc/00-intro.md#installation-linux-unix-osx)
To install required dependencies, do `composer install`
To configure local instance, do `cp app/config/parameters.yml.dist app/config/parameters.yml`. You may want to edit `app/config/parameters.yml` afterwards, especially DB connection credentials.
To build project itself, do
```
bin/console doctrine:database:create
bin/console doctrine:schema:update --force
bin/console 15x4:load-fields
bin/console assets:install --symlink
bin/console assetic:dump --env=prod --no-debug
```
To run application as a site, you need a webserver. You may use whatever you like, but production uses Apache2.Simplest option is Symfony built-in server, though it has some known issues:
```
bin/console server:run --env=prod
```