@@ -25,18 +25,28 @@ List of technologies which are used in this project.
25
25
- MySQL: Version 8
26
26
- Node: Version 14.15.0
27
27
28
- ### Setup Environment:
29
- ---
28
+ ### Setup Environment for Development:
30
29
- Copy ` .env.example ` to ` .env ` .
31
30
- Build ` docker-compose build ` .
32
- - Run ` docker-compose up -d ` .
33
- - Open favourite browser and type ` http://localhost:5000 ` .
31
+ - Run ` docker-compose up -d ` for development purpose.
32
+ - Open favourite browser and type ` http://localhost ` . If you wan to run on different port, you can change the ` HTTP_PORT ` from ` .env ` file.
33
+ - Generate key ` docker exec bakend-end php artisan key:generate `
34
+ - If you want to install a npm package then run ` docker exec front-end npm install <Package_Name> ` .
35
+ - If you want to install compose package then run ` docker exec back-end compose install <PACKAGE_NAME> ` .
36
+
37
+ ### Setup Environment for Production:
38
+ - Copy ` .env.example ` to ` .env ` .
39
+ - Change the necessary staff in ` .env ` file.
40
+ - Run ` docker-compose -f docker-compose.production.yml up ` for production.
41
+ - Open favourite browser and type ` http://localhost ` . If you wan to run on different port, you can change the ` HTTP_PORT ` from ` .env ` file.
34
42
- Generate key ` docker exec bakend-end php artisan key:generate `
35
43
- If you want to install a npm package then run ` docker exec front-end npm install <Package_Name> ` .
36
44
- If you want to install compose package then run ` docker exec back-end compose install <PACKAGE_NAME> ` .
37
45
46
+
47
+
38
48
## Contribute
39
- ---
49
+
40
50
Contribution are alwasy welcome! Please read the [ contribution guidelines] ( contributing.md ) first.
41
51
- Fork this project to your personal account.
42
52
- Create your feature branch ` git checkout -b feature/foo ` .
@@ -45,5 +55,5 @@ Contribution are alwasy welcome! Please read the [contribution guidelines](contr
45
55
- Create a new Pull Request.
46
56
47
57
## License
48
- ---
58
+
49
59
The theme is available as open source under the terms of the [ MIT License] ( LICENSE.txt ) .
0 commit comments