Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit a4ef53e

Browse files
committedMar 12, 2025·
Mooooar deployment
1 parent ded3e5d commit a4ef53e

File tree

3 files changed

+12
-4
lines changed

3 files changed

+12
-4
lines changed
 

‎build-clever-cloud.sh

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
#!/usr/bin/env bash
2+
3+
set -e
4+
5+
export PATH="${HOME}/.ghcup/bin:${PATH}"
6+
7+
mise trust
8+
mise install
9+
mise run install-haskell-toolchain
10+
mise run build-js
11+
make build-release

‎mise.toml

-3
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,6 @@ yarn = '1.22.22'
33
node = '22.14.0'
44
ghcup = '0.1.40.0'
55

6-
[env]
7-
PATH = "{{env.HOME}}/.ghcup/bin:{{env.PATH}}"
8-
96
[tasks.install-haskell-toolchain]
107
description = "Install the haskell toolchain"
118
run = ["ghcup install ghc 9.6.6 --set -f ",

‎package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "flora-dev",
33
"scripts": {
44
"start": "mise run start-release",
5-
"install": "mise trust && mise install && mise run install-haskell-toolchain && mise run build-js && make build-release"
5+
"install": "./build-clever-cloud.sh"
66
},
77
"engines": {
88
"node": "^22"

0 commit comments

Comments
 (0)
Please sign in to comment.