Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/lukashron/symfony-example-at
Example Symfony app
https://github.com/lukashron/symfony-example-at
php symfony
Last synced: about 1 month ago
JSON representation
Example Symfony app
- Host: GitHub
- URL: https://github.com/lukashron/symfony-example-at
- Owner: lukashron
- Created: 2024-09-12T21:31:39.000Z (2 months ago)
- Default Branch: main
- Last Pushed: 2024-09-14T21:02:56.000Z (2 months ago)
- Last Synced: 2024-09-30T17:20:58.350Z (about 2 months ago)
- Topics: php, symfony
- Language: PHP
- Homepage:
- Size: 51.8 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
# Symfony example project
This is a simple example project to show how to use the Symfony framework.
## Installation
1. Clone the repository
2. Install application
```bash
make app-build
```
3. Open the browser and go to `http://127.0.0.1:8080`## Import the data
```bash
make app-import-data
```OR
Manual import data. Order is important, first import the users, then the posts and finally the comments.
```bash
docker compose exec web php bin/console app:import:users
docker compose exec web php bin/console app:import:posts
docker compose exec web php bin/console app:import:comments
```## Run the tests
```bash
make open-test
```