This repository was archived by the owner on Feb 13, 2023. It is now read-only.
File tree Expand file tree Collapse file tree 1 file changed +6
-12
lines changed Expand file tree Collapse file tree 1 file changed +6
-12
lines changed Original file line number Diff line number Diff line change @@ -16,12 +16,11 @@ Create new project:
16
16
```
17
17
composer create-project ergonode/skeleton my_project_name
18
18
```
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
21
22
```
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
25
24
```
26
25
DATABASE_URL=pgsql://db_user:db_password@127.0.0.1:5432/db_name
27
26
```
@@ -41,18 +40,13 @@ bin/console ergonode:migrations:migrate
41
40
42
41
Fill database with initial data execute command:
43
42
```
44
- bin/phing database :fixture
43
+ bin/console ergonode :fixture:load
45
44
```
46
45
47
46
Now you can add user using [ console command] ( backend/commands ) ``` ergonode:user:create ```
48
47
49
48
```
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
56
50
```
57
51
58
52
See more:
You can’t perform that action at this time.
0 commit comments