Skip to content
This repository was archived by the owner on Feb 13, 2023. It is now read-only.

Commit 5c9e1ce

Browse files
authored
fix documentation for development instllation (#39)
1 parent 1b722b4 commit 5c9e1ce

File tree

1 file changed

+6
-12
lines changed

1 file changed

+6
-12
lines changed

docs/installation/backend-development.md

Lines changed: 6 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -16,12 +16,11 @@ Create new project:
1616
```
1717
composer create-project ergonode/skeleton my_project_name
1818
```
19-
20-
Go to my_project_name directory and type
19+
For beta version type:
20+
```
21+
composer create-project ergonode/skeleton my_project_name --stability beta
2122
```
22-
composer install
23-
```
24-
Create ```.env.prod``` file and add lines with database access configuration
23+
Go to my_project_name directory and create ```.env.local``` file and add lines with database access configuration
2524
```
2625
DATABASE_URL=pgsql://db_user:db_password@127.0.0.1:5432/db_name
2726
```
@@ -41,18 +40,13 @@ bin/console ergonode:migrations:migrate
4140

4241
Fill database with initial data execute command:
4342
```
44-
bin/phing database:fixture
43+
bin/console ergonode:fixture:load
4544
```
4645

4746
Now you can add user using [console command](backend/commands) ```ergonode:user:create```
4847

4948
```
50-
ergonode:user:create test@ergonode.com Johny Bravo abcd1234 en_GB
51-
```
52-
53-
Run build in symfony server
54-
```
55-
bin/console server:run
49+
ergonode:user:create email@ergonode.com name surname password en_GB
5650
```
5751

5852
See more:

0 commit comments

Comments
 (0)