Skip to content

Commit 0f6fd93

Browse files
committed
fix(config): with korojscommands
1 parent 4d4e8e7 commit 0f6fd93

File tree

14 files changed

+5770
-333
lines changed

14 files changed

+5770
-333
lines changed

.all-contributorsrc

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
2-
"projectName": "template-symfony",
3-
"projectOwner": "koromerzhin",
2+
"projectName": "symfony",
3+
"projectOwner": "hackariens",
44
"repoType": "github",
55
"repoHost": "https://github.com",
66
"files": [
@@ -10,7 +10,7 @@
1010
"commit": true,
1111
"contributorsPerLine": 7,
1212
"commitConvention": "gitmoji",
13-
"badgeTemplate": "[![All Contributors](https://img.shields.io/badge/all_contributors-<%= contributors.length %>-orange.svg?style=flat-square)](#-contributors)",
13+
"badgeTemplate": "[![All Contributors](https://img.shields.io/badge/all_contributors-<%= contributors.length %>-orange.svg?style=flat-square)]",
1414
"contributorTemplate": "<a href=\"<%= contributor.profile %>\"><img src=\"<%= contributor.avatar_url %>\" width=\"<%= options.imageSize %>px;\" alt=\"\"/><br /><sub><b><%= contributor.name %></b></sub></a>",
1515
"contributors": [
1616
{

.env

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
STACK=symfony
2+
FOLDERPHAR=apps
3+
FILESQL=database_init/01_symfony.sql
4+
FOLDERLAMPY=/home/dvp/lampy
5+
DOCKERCOMPOSEFILES=docker-compose.yml docker-compose-lampy.yml

.github/workflows/ci.yml

Lines changed: 12 additions & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -10,45 +10,29 @@ jobs:
1010
php-versions: ["7.4"]
1111
steps:
1212
- name: Checkout
13-
uses: actions/checkout@v2
13+
uses: actions/checkout@v3
1414
with:
1515
submodules: recursive
1616
- name: Repository lampy
17-
uses: actions/checkout@v2
17+
uses: actions/checkout@v3
1818
with:
1919
submodules: recursive
20+
ref: 'v2.0'
2021
repository: koromerzhin/lampy
2122
path: lampy
22-
- name: Cache npm packages
23-
id: npm-cache
24-
uses: actions/cache@v2
25-
with:
26-
path: node_modules
27-
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
28-
restore-keys: |
29-
${{ runner.os }}-node
30-
- name: Cache Composer packages
31-
id: composer-cache
32-
uses: actions/cache@v2
33-
with:
34-
path: |
35-
apps/bin
36-
apps/vendor
37-
key: ${{ runner.os }}-composer-${{ hashFiles('**/apps/composer.lock') }}
38-
restore-keys: |
39-
${{ runner.os }}-composer-
4023
- name: Install npm dependencies
41-
if: steps.npm-cache.outputs.cache-hit != 'true'
42-
run: make node_modules
24+
run: npm install
4325
- name: 'SET BDD'
44-
run: make bddset
26+
run: npm run bdd:mariadb
4527
- name: 'Launch Lampy'
46-
run: make lampy
28+
run: cd lampy && npm run exec
4729
- name: 'Image pull'
48-
run: make docker image-pull
30+
run: npm run docker:getpull-image
4931
- name: 'Build containers'
50-
run: make docker deploy
32+
run: npm run docker:deploy
5133
- name: 'sleep'
52-
run: make sleep 60
34+
run: npm run docker:waiting
5335
- name: 'docker ls'
54-
run: make docker ls
36+
run: npm run docker:ls
37+
- name: linter readme.md
38+
run: npm run lint:markdown

.gitmodules

Lines changed: 0 additions & 3 deletions
This file was deleted.

README.md

Lines changed: 13 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,22 @@
1-
# Welcome to @koromerzhin/template-symfony 👋
1+
# Welcome to @hackariens/symfony 👋
22

33
![Version](https://img.shields.io/badge/version-1.0.0-blue.svg?cacheSeconds=2592000)
44
![Documentation](https://img.shields.io/badge/documentation-yes-brightgreen.svg)
5-
[![Maintenance](https://img.shields.io/badge/Maintained%3F-yes-green.svg)](https://github.com/koromerzhin/template-symfony/graphs/commit-activity)
6-
![Continuous Integration](https://github.com/koromerzhin/template-symfony/workflows/Continuous%20Integration/badge.svg?branch=develop)
5+
[![Maintenance](https://img.shields.io/badge/Maintained%3F-yes-green.svg)](https://github.com/hackariens/symfony/graphs/commit-activity)
6+
![Continuous Integration](https://github.com/hackariens/symfony/workflows/Continuous%20Integration/badge.svg?branch=develop)
77

88
> Template de site internet sous Symfony
99
10-
## 🏠 [Homepage](https://github.com/koromerzhin/template-symfony#readme)
10+
## 🏠 [Homepage](https://github.com/hackariens/symfony#readme)
1111

1212
<!-- ALL-CONTRIBUTORS-BADGE:START - Do not remove or modify this section -->
13-
[![All Contributors](https://img.shields.io/badge/all_contributors-3-orange.svg?style=flat-square)](#-contributors)
13+
[![All Contributors](https://img.shields.io/badge/all_contributors-3-orange.svg?style=flat-square)]
1414
<!-- ALL-CONTRIBUTORS-BADGE:END -->
1515

1616
## Need
1717

1818
Software:
1919

20-
- make
2120
- npm
2221
- docker
2322
- repository koromerzhin/lampy
@@ -33,27 +32,20 @@ Hosts:
3332
## Download
3433

3534
```sh
36-
git clone git@github.com:koromerzhin/template-symfony.git template-symfony
37-
cd template-symfony
38-
git submodule update --init
35+
git clone git@github.com:hackariens/symfony.git symfony
36+
cd symfony
3937
```
4038

4139
## Install
4240

4341
```sh
44-
make install
42+
npm install
4543
```
4644

47-
## after git add
45+
## Launch
4846

4947
``` sh
50-
make git check
51-
```
52-
53-
## help
54-
55-
``` sh
56-
make help
48+
npm run exec
5749
```
5850

5951
## Author
@@ -69,9 +61,9 @@ make help
6961

7062
Contributions, issues and feature requests are welcome!
7163
Feel free to check
72-
[issues page](https://github.com/koromerzhin/template-symfony/issues).
64+
[issues page](https://github.com/hackariens/symfony/issues).
7365
You can also take a look at the
74-
[contributing guide](https://github.com/koromerzhin/template-symfony/blob/develop/CONTRIBUTING.md).
66+
[contributing guide](https://github.com/hackariens/symfony/blob/develop/CONTRIBUTING.md).
7567

7668
## Show your support
7769

@@ -82,7 +74,7 @@ Give a ⭐️ if this project helped you!
8274
Copyright © 2020 [Koromerzhin](https://github.com/koromerzhin).
8375

8476
This project is
85-
[MIT](https://github.com/koromerzhin/template-symfony/blob/develop/LICENSE) licensed.
77+
[MIT](https://github.com/hackariens/symfony/blob/develop/LICENSE) licensed.
8678

8779
## ✨ Contributors
8880

conf/docker-php-ram-limit.ini

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
memory_limit = -1

conf/httpd.conf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -259,8 +259,8 @@ ServerAdmin you@example.com
259259
# documents. By default, all requests are taken from this directory, but
260260
# symbolic links and aliases may be used to point to other locations.
261261
#
262-
DocumentRoot "/var/www/public"
263-
<Directory "/var/www/public">
262+
DocumentRoot "/var/www/web"
263+
<Directory "/var/www/web">
264264
#
265265
# Possible values for the Options directive are "None", "All",
266266
# or any combination of:

0 commit comments

Comments
 (0)