strapi/docs/3.x.x/getting-started/quick-start.md

61 lines
2.4 KiB
Markdown
Raw Normal View History

2017-10-10 11:15:24 +02:00
# Quick start
We have created an Quick Start installation which will set-up, configure and get Strapi up and running effortlessly.
::: warning NOTE
Quick start will install Strapi using a SQLite database. [SQLite](https://www.sqlite.org/index.html) is likely used more than all other database engines combined.
:::
This quick start is written for developers who prefer an intermediate or more advanced introduction to Strapi. A more detailed version of this Quick Start page can be found at [Quick Start - Detailed](/3.x.x/installation-options/quick-start-detailed.html) in the **Installation Options** section.
(You should have already completed the steps to install Strapi and the requirements from [Installation Requirements](install-requirements.html). These steps continue after ensuring nodejs, NPM and strapi are all properly installed.)
2017-10-10 11:15:24 +02:00
This page explains how to create a new project in Strapi. ([Check out our video tutorial](https://www.youtube.com/watch?v=yMl5IcFHA74)).
2017-10-10 11:15:24 +02:00
2018-10-28 08:15:31 +01:00
## 1. Create a project
2017-10-10 11:15:24 +02:00
Navigate to your parent "projects" directory in your command line. Enter the following command to create a Strapi Quick Start project.
2017-10-10 11:15:24 +02:00
```bash
str@pi:~/Desktop/Strapi/Projects$ strapi new my-project --quickstart
```
The command will automatically create a Strapi app folder within your parent "projects" directory.
2017-12-13 13:24:46 +01:00
This will open your default browser to the Welcome page for creating an admin user.
2017-12-13 13:24:46 +01:00
::: warning NOTE
You can replace the "my-project" project name with any name you want.
2018-10-28 08:15:31 +01:00
---
2017-10-10 11:15:24 +02:00
Quick start will install Strapi using a SQLite database. ([SQLite](https://www.sqlite.org/index.html) is likely used more than all other database engines combined.)
2017-10-10 11:15:24 +02:00
:::
2017-10-10 11:15:24 +02:00
---
2017-10-10 11:15:24 +02:00
## 2. Create an admin user
2017-10-10 11:15:24 +02:00
The first user you create is the root user for your project. This user has all privileges and access rights. You will need to complete the following fields:
2017-10-10 11:15:24 +02:00
1. Username, create a username for login access to your project, eg. paulbocuse
2. Password, create a unique password for your project
3. Email Address, this will be used for recovery
4. Check receive news, this is optional but recommended
5. Click the "Ready to Start" button
2017-10-10 11:15:24 +02:00
---
2017-10-10 11:15:24 +02:00
After your admin user is registered, you will see the Strapi admin panel.
2017-12-13 13:24:46 +01:00
::: warning NOTE
Every user is found by clicking in the left menu: Content Type --> Users. From here you can add and edit users.
2018-10-28 08:15:31 +01:00
:::
2017-10-10 11:15:24 +02:00
Now let's see how to [create a Content Type](#_3-create-a-content-type).
---
2017-10-10 11:15:24 +02:00
## 3. Create a Content Type