https://github.com/datum-cloud/datum.net-cms
Headless cms to manage the Datum.net blog
https://github.com/datum-cloud/datum.net-cms
Last synced: about 1 month ago
JSON representation
Headless cms to manage the Datum.net blog
- Host: GitHub
- URL: https://github.com/datum-cloud/datum.net-cms
- Owner: datum-cloud
- Created: 2026-02-02T06:46:38.000Z (5 months ago)
- Default Branch: main
- Last Pushed: 2026-05-24T17:58:07.000Z (about 1 month ago)
- Last Synced: 2026-05-24T19:28:29.264Z (about 1 month ago)
- Language: JavaScript
- Homepage: https://www.datum.net/blog
- Size: 7.09 MB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 2
-
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/dev-docs/cli) (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/dev-docs/cli#strapi-develop)
```
npm run develop
# or
yarn develop
```
### `start`
Start your Strapi application with autoReload disabled. [Learn more](https://docs.strapi.io/dev-docs/cli#strapi-start)
```
npm run start
# or
yarn start
```
### `build`
Build your admin panel. [Learn more](https://docs.strapi.io/dev-docs/cli#strapi-build)
```
npm run build
# or
yarn build
```
## 📤 Migrate Authors to Strapi Cloud
Migrate authors from datum.net content collection (`src/content/authors/`) to Strapi:
1. Create an API token in Strapi Admin: **Settings → API Tokens** with `create` permission for **Author** and **Upload**
2. Set env vars and run:
```bash
STRAPI_URL=https://your-project.strapiapp.com STRAPI_API_TOKEN=xxx npm run migrate:authors
```
Or use `.env`:
```bash
STRAPI_URL=https://your-project.strapiapp.com
STRAPI_API_TOKEN=your-api-token
```
```bash
npm run migrate:authors
```
- `AUTHORS_SOURCE`: Override source path (default: `../../datum.net/src/content/authors`)
- Run from `strapi-blog` directory with datum.net as sibling folder
## ⚙️ Deployment
Strapi gives you many possible deployment options for your project including [Strapi Cloud](https://cloud.strapi.io). Browse the [deployment section of the documentation](https://docs.strapi.io/dev-docs/deployment) to find the best solution for your use case.
```
yarn strapi deploy
```
## 📚 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://strapi.io/blog) - 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.
---
🤫 Psst! [Strapi is hiring](https://strapi.io/careers).