https://github.com/danopcode/kalyna.se
Kalyna Solutions AB homepage.
https://github.com/danopcode/kalyna.se
kalyna nextjs react
Last synced: about 1 month ago
JSON representation
Kalyna Solutions AB homepage.
- Host: GitHub
- URL: https://github.com/danopcode/kalyna.se
- Owner: DanOpcode
- Created: 2022-10-23T17:56:25.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2023-06-10T05:25:17.000Z (almost 3 years ago)
- Last Synced: 2025-06-16T05:06:01.097Z (12 months ago)
- Topics: kalyna, nextjs, react
- Language: JavaScript
- Homepage: https://www.kalyna.se
- Size: 8.31 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# kalyna
## Getting Started
Once you bootstrap and enter your project, fetch your dependencies and start the build server. The server is available at http://localhost:4999
```shell
cd kalyna
mix deps.get
mix tableau.server
```
## Draft Posts and WIP Pages
Posts and pages that are not ready for production can be saved to the `_drafts` and `_wip` directories respectively.
These are controlled via application configuration, as seen in `config/dev.exs` and `config/prod.exs`
## Production Builds
To build for production, run the `mix build` alias to build your site and compile any assets (depends on what asset you chose when generating your site).
Running your build with `MIX_ENV=prod` is important so that the live reload JS script is not loaded, and also allows you to configure your app differently in dev vs prod, like showing future posts in dev, but not in prod.
```shell
MIX_ENV=prod mix build
```