Skip to content

New features #24

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 7 commits into from
Jul 9, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .env
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
CONTAINER_REGISTRY_BASE=quay.io/api-platform
29 changes: 8 additions & 21 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,28 +4,15 @@ API Platform Demo
This a demonstration application for the [API Platform Framework](https://api-platform.com).
Try it online at <https://demo.api-platform.com>.

Installation (recommended)
==========================
Install
=======

```shell
$ git clone https://github.com/api-platform/demo.git
$ docker-compose up

$ git clone https://github.com/api-platform/demo.git
And go to https://localhost.

$ docker-compose up
```
Loading Fixtures
================

And go to https://localhost

Installation (manual)
=====================

```shell

$ git clone https://github.com/api-platform/demo.git

# Create a user and a database in PostgreSQL and enter the credentials into .env

$ composer install

$ php bin/console doctrine:schema:update --force
```
$ docker-compose exec php bin/console hautelook:fixtures:load
12 changes: 8 additions & 4 deletions admin/.dockerignore
100755 → 100644
Original file line number Diff line number Diff line change
@@ -1,10 +1,14 @@
**/*.log
**/*.md
**/._*
**/.dockerignore
**/.DS_Store
**/.gitignore
**/.git/
**/.gitattributes
**/.gitignore
**/.gitmodules
**/Dockerfile*
**/Thumbs.db
**/*.md
**/.dockerignore
Dockerfile*
.env*
build/
node_modules/
Empty file modified admin/.env
100755 → 100644
Empty file.
Empty file modified admin/.gitignore
100755 → 100644
Empty file.
2 changes: 1 addition & 1 deletion admin/Dockerfile
100755 → 100644
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:9.4-alpine
FROM node:9.11-alpine

RUN mkdir -p /usr/src/admin

Expand Down
2,166 changes: 4 additions & 2,162 deletions admin/README.md
100755 → 100644

Large diffs are not rendered by default.

6 changes: 4 additions & 2 deletions admin/package.json
100755 → 100644
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,12 @@
"version": "0.1.0",
"private": true,
"dependencies": {
"@api-platform/admin": "^0.1.15"
"@api-platform/admin": "^0.5.0",
"react": "^16.3.0",
"react-dom": "^16.3.0"
},
"devDependencies": {
"react-scripts": "1.1.0"
"react-scripts": "^1.1.0"
},
"scripts": {
"start": "react-scripts start",
Expand Down
Empty file modified admin/public/favicon.ico
100755 → 100644
Empty file.
Empty file modified admin/public/index.html
100755 → 100644
Empty file.
Empty file modified admin/public/manifest.json
100755 → 100644
Empty file.
Empty file modified admin/src/App.js
100755 → 100644
Empty file.
Empty file modified admin/src/App.test.js
100755 → 100644
Empty file.
Empty file modified admin/src/index.js
100755 → 100644
Empty file.
Empty file modified admin/src/registerServiceWorker.js
100755 → 100644
Empty file.
Loading