-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathci.demo.yml
More file actions
29 lines (29 loc) · 769 Bytes
/
ci.demo.yml
File metadata and controls
29 lines (29 loc) · 769 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
schemaVersion: v0.2
prepare:
steps:
- name: Update nix
command: curl -L https://nixos.org/nix/install | sh
- name: Prepare Flutter Environment
command: nix-env -i -f ~/app/configuration.nix
- name: Install Dependencies
command: cd demo_app && flutter clean && flutter pub get
test:
steps: []
run:
app:
steps:
- name: Install Dependencies
command: cd demo_app && flutter clean && flutter pub get
- name: Run App in Debug
command: cd demo_app && flutter run -d web-server --web-hostname=0.0.0.0
--web-port=3000
plan: 201
replicas: 1
network:
ports:
- port: 3000
isPublic: false
paths:
- port: 3000
path: /
stripPath: false