Skip to content

Commit

Permalink
Removed the 'fork me' banner from the front page and corresponding co…
Browse files Browse the repository at this point in the history
…nfig file values, updated some JS dependencies
  • Loading branch information
chartjes committed Nov 29, 2019
1 parent 2855afd commit 020a75f
Show file tree
Hide file tree
Showing 9 changed files with 3,261 additions and 4,764 deletions.
17 changes: 5 additions & 12 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -186,23 +186,16 @@ server {
}
```

You can use the included `opencfp-nginx.conf.dist` file and modify it as needed.
### [Running Locally](#running-locally)

[Caddy](https://caddyserver.com) example:
After having gone through the setup steps and database migrations, you can test out OpenCFP locally by installing the [Symfony binary](https://symfony.com/download)
and using the following command:

```
localhost:8080
root /var/www/opencfp/web
fastcgi / 127.0.0.1:9000 php
rewrite / {path} {path}/ /index.php/{path}
log access.log
errors error.log
symfony server:start
```

You can use the included `Caddyfile.dist` file and modify it as needed.

The application does not currently work properly if you use PHP's built-in
server.
By default it should start up a web server running your site at `https://127.0.0.1:8000`

### [Create a Database](#create-a-database)

Expand Down
1 change: 0 additions & 1 deletion config/development.yml.dist
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@ application:
date_format: d/m/Y
date_timezone: "UTC"
coc_link: http://confcodeofconduct.com/
show_contrib_banner: true
venue_image_path: /assets/img/venue.jpg
user_image_size: 300

Expand Down
1 change: 0 additions & 1 deletion config/docker.yml.dist
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@ application:
date_format: d/m/Y
date_timezone: "UTC"
coc_link: http://confcodeofconduct.com/
show_contrib_banner: true
venue_image_path: /assets/img/venue.jpg
user_image_size: 300

Expand Down
1 change: 0 additions & 1 deletion config/production.yml.dist
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@ application:
date_format: d/m/Y
date_timezone: "UTC"
coc_link: http://confcodeofconduct.com/
show_contrib_banner: true
venue_image_path: /assets/img/venue.jpg
user_image_size: 300

Expand Down
5 changes: 2 additions & 3 deletions config/testing.yml.dist
Original file line number Diff line number Diff line change
Expand Up @@ -13,16 +13,15 @@ application:
online_conference: false
date_format: m-d-Y
coc_link: http://confcodeofconduct.com
show_contrib_banner: true
venue_image_path: /assets/img/venue.jpg
user_image_size: 300

database:
host: 127.0.0.1
database: cfp_test
dsn: mysql:dbname=cfp_test;host=127.0.0.1
user: root
password: root
user: cfp_test
password: cfp_test

log:
level: debug
Expand Down
2 changes: 1 addition & 1 deletion mix-manifest.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
"/web/assets/css/app.css": "/web/assets/css/app.css"
}
}
3 changes: 0 additions & 3 deletions resources/views/layouts/splash.twig
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,5 @@
{% block scripts %}
{% endblock %}

{% if site.show_contrib_banner %}
{% include "_forkme.twig" %}
{% endif %}
</body>
</html>
Loading

0 comments on commit 020a75f

Please sign in to comment.