https://github.com/bogdaaamn/strapi-sandbox
A strapi sandbox for Cloud
https://github.com/bogdaaamn/strapi-sandbox
Last synced: 19 days ago
JSON representation
A strapi sandbox for Cloud
- Host: GitHub
- URL: https://github.com/bogdaaamn/strapi-sandbox
- Owner: bogdaaamn
- Created: 2023-07-21T09:12:11.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2023-07-27T14:27:04.000Z (almost 3 years ago)
- Last Synced: 2025-02-25T22:15:11.540Z (over 1 year ago)
- Language: JavaScript
- Size: 200 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# 🚀 Getting started with Strapi
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.
## ⚙️ Local development (Strapi)
This steps run Strapi in development mode locally, without importing any mock data. This is used for a fresh copy of Strapi and its configuration.
1. Run `yarn` to install modules and Strapi CLI
2. Run `yarn build`
3. Run `yarn develop`
4. Create admin user
## 🐳 Local development with mock data (Docker)
In order to access a quick API mock, you need `docker` and `docker-compose` installed locally.
1. Copy `env.dev` to `.env`
2. Run `docker-compose up`
3. Create admin user (unskippable)
4. Access the API `http://localhost:1337/api/pages?populate=*`
More API references in the Postman collection.
## 💻 Strapi CLI
### `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
```
## 📚 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.