Skip to content

Commit a62c1b2

Browse files
committed
Merge branch 'develop'
2 parents 197f2bc + 874d2c2 commit a62c1b2

3 files changed

Lines changed: 45 additions & 4 deletions

File tree

data/env.json

Lines changed: 24 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,8 @@
33
"Wordpress": ["Wordpress", "MySQL-v5", "phpMyAdmin"],
44
"Joomla": ["Joomla", "MySQL-v5", "phpMyAdmin"],
55
"Drupal": ["Drupal", "MySQL-v5", "phpMyAdmin"],
6-
"Ghost": ["Ghost"]
6+
"Ghost": ["Ghost"],
7+
"Strapi": ["Strapi", "MongoDB"]
78
},
89
"langages": {
910
"Node.js": [],
@@ -88,6 +89,28 @@
8889
}
8990
}
9091
},
92+
"Strapi": {
93+
"name": "strapi",
94+
"documentation": "Strapi.md",
95+
"service": {
96+
"image": "strapi/strapi",
97+
"restart": "always",
98+
"volumes": [
99+
"./data/strapi-app:/usr/src/api/strapi-app"
100+
],
101+
"depends_on": ["mongo"],
102+
"ports": ["1337:1337"],
103+
"environment": {
104+
"APP_NAME": "strapi-app",
105+
"DATABASE_CLIENT": "mongo",
106+
"DATABASE_HOST": "mongo",
107+
"DATABASE_PORT": "27017",
108+
"DATABASE_NAME": "strapi",
109+
"DATABASE_USERNAME": "dev",
110+
"DATABASE_PASSWORD": "dev"
111+
}
112+
}
113+
},
91114
"PHP": {
92115
"name": "php",
93116
"documentation": "PHP.md",

data/env/Strapi.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
### App: Strapi
2+
3+
#### What is Strapi?
4+
5+
The open source Headless CMS Front-End Developers love.
6+
API creation made simple, secure and fast. The most advanced open-source Content Management Framework to build powerful API with no effort.
7+
8+
* **Website:** [strapi.io](https://strapi.io)
9+
* **Documentation:** [strapi.io/documentation](https://strapi.io/documentation/)
10+
11+
#### Container
12+
13+
* **Image used:** [strapi/strapi](https://hub.docker.com/strapi/strapi/)
14+
15+
##### Usage
16+
17+
The data of your ghost instance is saved in `./data/strapi-app`.
18+
19+
Access it with your browser at address [localhost:1337](http://localhost:1337).

package.json

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@becode/cli",
3-
"version": "0.5.0",
3+
"version": "0.5.1",
44
"description": "CLI Utils at BeCode. Useful for everyone at BeCode.",
55
"keywords": ["cli", "tools", "shortcuts", "docker-compose"],
66
"homepage": "https://github.com/becodeorg/cli#readme",
@@ -24,8 +24,7 @@
2424
"postinstall": "node ./bin/post-install.js"
2525
},
2626
"lint-staged": {
27-
"*.js": ["npx eslint --fix --cache", "git add"],
28-
"*.json": ["npx prettier --parser json --write", "git add"]
27+
"*.js": ["npx eslint --fix --cache", "git add"]
2928
},
3029
"husky": {
3130
"hooks": {

0 commit comments

Comments
 (0)