@strapi/generate-new
Advanced tools
Comparing version 4.0.2 to 4.0.3
@@ -1,3 +0,57 @@ | ||
# Strapi application | ||
# 🚀 Getting started with Strapi | ||
A quick description of your strapi application | ||
Strapi comes with a full featured [Command Line Interface](https://docs.strapi.io/developer-docs/latest/developer-resources/cli/CLI.html) (CLI) which lets you scaffold and manage your project in seconds. | ||
### `develop` | ||
Start your Strapi application with autoReload enabled. [Learn more](https://docs.strapi.io/developer-docs/latest/developer-resources/cli/CLI.html#strapi-develop) | ||
``` | ||
npm run develop | ||
# or | ||
yarn develop | ||
``` | ||
### `start` | ||
Start your Strapi application with autoReload disabled. [Learn more](https://docs.strapi.io/developer-docs/latest/developer-resources/cli/CLI.html#strapi-start) | ||
``` | ||
npm run start | ||
# or | ||
yarn start | ||
``` | ||
### `build` | ||
Build your admin panel. [Learn more](https://docs.strapi.io/developer-docs/latest/developer-resources/cli/CLI.html#strapi-build) | ||
``` | ||
npm run build | ||
# or | ||
yarn build | ||
``` | ||
## ⚙️ Deployment | ||
Strapi gives you many possible deployment options for your project. Find the one that suits you on the [deployment section of the documentation](https://docs.strapi.io/developer-docs/latest/setup-deployment-guides/deployment.html). | ||
## 📚 Learn more | ||
- [Resource center](https://strapi.io/resource-center) - Strapi resource center. | ||
- [Strapi documentation](https://docs.strapi.io) - Official Strapi documentation. | ||
- [Strapi tutorials](https://strapi.io/tutorials) - List of tutorials made by the core team and the community. | ||
- [Strapi blog](https://docs.strapi.io) - Official Strapi blog containing articles made by the Strapi team and the community. | ||
- [Changelog](https://strapi.io/changelog) - Find out about the Strapi product updates, new features and general improvements. | ||
Feel free to check out the [Strapi GitHub repository](https://github.com/strapi/strapi). Your feedback and contributions are welcome! | ||
## ✨ Community | ||
- [Discord](https://discord.strapi.io) - Come chat with the Strapi community including the core team. | ||
- [Forum](https://forum.strapi.io/) - Place to discuss, ask questions and find answers, show your Strapi project and get feedback or just talk with other Community members. | ||
- [Awesome Strapi](https://github.com/strapi/awesome-strapi) - A curated list of awesome things related to Strapi. | ||
--- | ||
<sub>🤫 Psst! [Strapi is hiring](https://strapi.io/careers).</sub> |
@@ -146,3 +146,3 @@ 'use strict'; | ||
throw Error( | ||
`Illegal template structure, unknow file ${chalk.green(nextParents.join('/'))}` | ||
`Illegal template structure, unknown file ${chalk.green(nextParents.join('/'))}` | ||
); | ||
@@ -149,0 +149,0 @@ } |
{ | ||
"name": "@strapi/generate-new", | ||
"version": "4.0.2", | ||
"version": "4.0.3", | ||
"description": "Generate a new Strapi application.", | ||
@@ -52,6 +52,6 @@ "keywords": [ | ||
"engines": { | ||
"node": ">=12.x.x <=16.x.x", | ||
"node": ">=12.22.0 <=16.x.x", | ||
"npm": ">=6.0.0" | ||
}, | ||
"gitHead": "fd656a47698e0a33aae42abd4330410c8cba1d08" | ||
"gitHead": "48893ae3fc951b618fd8c4fdc6970e623d2c92db" | ||
} |
48951