strapi/docs/3.0.0-beta.x/getting-started/install-requirements.md

29 lines
963 B
Markdown
Raw Normal View History

2019-11-22 15:03:20 +01:00
# Installation requirements
2019-11-22 15:03:20 +01:00
## Node.js
2019-05-16 09:56:33 +02:00
Strapi only requires [Node.js](https://nodejs.org). The current recommended version to run strapi is `Node v10` (current `LTS`).
2019-05-16 09:56:33 +02:00
This is all that is needed before Strapi can run on your local environment.
2019-11-22 15:03:20 +01:00
You can also use **yarn** if you want [here](https://yarnpkg.com/en/docs/getting-started) are the instructions to get started with it.
2019-11-22 15:03:20 +01:00
- **Node.js** >= 10.x
- **NPM** >= 6.x
2019-11-22 15:03:20 +01:00
## Databases
2019-11-22 15:03:20 +01:00
Strapi is supporting multiple databases. If you are using the `--quickstart` or if you manually chose the `SQLite` database, you will not need to install any database on you local computer.
2019-05-16 09:56:33 +02:00
2019-11-22 15:03:20 +01:00
If you want to use a custom database, here is versions you will have to respect:
2019-05-16 09:56:33 +02:00
2019-11-22 15:03:20 +01:00
- **MongoDB** >= 3.6
- **MySQL** >= 5.6
- **MariaDB** >= 10.1
- **PostgreSQL** >= 10
- **SQLite** >= 3
::: tip NEXT STEPS
2019-10-23 10:11:53 +02:00
👏 Congrats, you are all set! Now that Node.js is installed you can continue with the [Quick start guide](quick-start.md).
:::