Skip to content

Commit b74cbf2

Browse files
committed
[Feature] [MST] Improve README installation guide, update default admin user
1 parent 7422820 commit b74cbf2

File tree

3 files changed

+29
-4
lines changed

3 files changed

+29
-4
lines changed

README.md

Lines changed: 21 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,10 +128,26 @@ All you need to do is install [Docker](https://docs.docker.com/get-docker/) and
128128
```sh
129129
docker-compose up -d
130130
```
131-
3. Run doctrine migrations
131+
3. Install composer packages
132+
```sh
133+
docker-compose exec php-fpm composer install
134+
```
135+
4. Run doctrine migrations
132136
```sh
133137
docker-compose exec php-fpm php bin/console d:m:m --no-interaction
134138
```
139+
5. Install npm packages
140+
```sh
141+
docker-compose run npm npm install
142+
```
143+
6. Build the frontends
144+
```sh
145+
docker-compose run npm npm run build
146+
```
147+
7. Import data
148+
```sh
149+
docker-compose exec php-fpm php bin/console data:import
150+
```
135151

136152
<p align="right">(<a href="#top">back to top</a>)</p>
137153

@@ -144,6 +160,10 @@ You should be able to access the following two endpoints after your installation
144160
- http://localhost:18000/
145161
- http://localhost:18000/admin
146162

163+
Default backend credentials:
164+
- Email: tim.koertgen@outlook.de
165+
- Password: modular-symfony-template
166+
147167
<!--_For more examples, please refer to the [Documentation](https://example.com)_-->
148168
_Documentation is in progress_
149169

data/import/common/user.csv

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
email,roles,password
2-
tim.koertgen@outlook.de,"[""ROLE_ADMIN"", ""ROLE_USER""]",$2y$13$BHQw4014n4xDOJ5kN0dt7uUFYuulpEBaYoBZOTyDEJh8ohjzY01k6
2+
tim.koertgen@outlook.de,"[""ROLE_ADMIN"", ""ROLE_USER""]",$2y$13$beP5ykc6KVJPk20ttCNs..tSdq4XjYeofBx1kJjrO7MMQX2Y2hY3e

package-lock.json

Lines changed: 7 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)