Complete Theme Migration from Henrik
This commit is contained in:
parent
eee9b2b2c1
commit
f4a1ebc077
41 changed files with 5266 additions and 60 deletions
46
README.md
46
README.md
|
|
@ -1,9 +1,29 @@
|
|||
# alguidelines.dev Site Source Repo
|
||||
|
||||
This is the source for the [alguidelines.dev](https://alguidelines.dev)
|
||||
website.
|
||||
# Business Central Design Patterns & Best Practices
|
||||
|
||||
This site is meant to house some of the community's knowledge about Microsoft Dynamics 365 Business Central AL Development best practices, particularly around hosting Design Patterns.
|
||||
|
||||
Please see the [ALGuidelines.dev](https://alguidelines.dev/) site for the full information about this project.
|
||||
|
||||
## Repo organization
|
||||
|
||||
This is a [hugo](https://gohugo.io) statically-generated site, hosted
|
||||
on [GitHub Pages](https://https://pages.github.com). The site is automatically built by
|
||||
GitHub Actions (see regen-gh-pages.yml).
|
||||
|
||||
All site content is stored in the `content` directory in markdown format.
|
||||
|
||||
```text
|
||||
content/en
|
||||
├── _index.html # Landing page
|
||||
├── author # Info about blog authors
|
||||
├── blog # Blog posts
|
||||
├── docs # Documentation pages
|
||||
└── search.md
|
||||
```
|
||||
## Contributing
|
||||
|
||||
This project welcomes contributions and suggestions. Most contributions require you to agree to a
|
||||
|
|
@ -18,6 +38,32 @@ This project has adopted the [Microsoft Open Source Code of Conduct](https://ope
|
|||
For more information see the [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or
|
||||
contact [opencode@microsoft.com](mailto:opencode@microsoft.com) with any additional questions or comments.
|
||||
|
||||
### Setup
|
||||
|
||||
1. Clone and setup
|
||||
```sh
|
||||
# Clone all submodules
|
||||
git submodule update --init --recursive --depth 1
|
||||
# Install NPM dependencies
|
||||
npm install
|
||||
```
|
||||
2. Run Hugo server
|
||||
```
|
||||
$ hugo server
|
||||
Web Server is available at http://localhost:1313/ (bind address 127.0.0.1)
|
||||
Press Ctrl+C to stop
|
||||
```
|
||||
You can visit [localhost:1313](http://localhost:1313/) in browser to preview website.
|
||||
|
||||
### Making changes
|
||||
|
||||
1. Create a new branch
|
||||
2. Make your changes
|
||||
3. Verify your changes locally with Hugo server
|
||||
4. Commit and push your changes to the branch
|
||||
5. Raise a PR to main branch
|
||||
6. Once PR is merged, your changes would be live on the site
|
||||
|
||||
## Trademarks
|
||||
|
||||
This project may contain trademarks or logos for projects, products, or services. Authorized use of Microsoft
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue