Skip to content
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

[SCOUT] Fix dev setup #159

Merged
merged 1 commit into from
Mar 2, 2024
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
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ The docker-compose file creates four containers:

Build and run these images with docker-compose:

`sudo docker compose up --build -d`
`docker compose up --build -d`

The container will have appropriate volume bindings with `./app`.

Expand All @@ -37,7 +37,7 @@ And finally populate the DB with some test data:

Create a new file `.env.local` and insert here the testing `MOLLIE_API_KEY`:

`echo MOLLIE_API_KEY=test_................................. > test`
`echo MOLLIE_API_KEY=test_................................. > .env.local`

The default admin ID is 1, but be wary that each time you run the fixtures, this
ID will be incremented because of auto-increment options in the database.
Expand Down
5 changes: 3 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,8 @@
"file-loader": "^6.0.0",
"fos-router": "./vendor/friendsofsymfony/jsrouting-bundle/Resources/",
"regenerator-runtime": "^0.13.2",
"webpack-notifier": "^1.6.0"
"webpack-notifier": "^1.6.0",
"webpack": "^4.6.0"
},
"license": "UNLICENSED",
"private": true,
Expand All @@ -19,6 +20,6 @@
"fork-awesome": "^1.2.0",
"jquery": "^3.6.0",
"less": "^4.0.0",
"less-loader": "^11.0.0"
"less-loader": "^12.2.0"
}
}
2 changes: 1 addition & 1 deletion src/DataFixtures/MemberFixtures.php
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ public function load(ObjectManager $manager)
$divisionNooderhaaks = new Division();
$divisionNooderhaaks->setName("Noorderhaaks");
$divisionNooderhaaks->setPostCode("1234AB");

$contactNooderhaaks = new Member();
$contactNooderhaaks->setId(1338);
$contactNooderhaaks->setFirstName("Jan");
Expand Down
Loading