Skip to content

Commit f252202

Browse files
committed
Merge branch 'main' into develop
2 parents 02354ec + 0d1e7e1 commit f252202

File tree

2 files changed

+9
-2
lines changed

2 files changed

+9
-2
lines changed

.env.vagrant.example

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ FLASK_APP_NAME="UVLHUB.IO(dev)"
22
FLASK_ENV=development
33
FLASK_APP=app
44
SECRET_KEY=dev_test_key_1234567890abcdefghijklmnopqrstu
5-
DOMAIN=localhost
5+
DOMAIN=localhost:5000
66
MARIADB_HOSTNAME=localhost
77
MARIADB_PORT=3306
88
MARIADB_DATABASE=uvlhubdb

vagrant/05_run_app.yml

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,11 +17,18 @@
1717
WORKING_DIR: "{{ working_dir }}"
1818

1919
tasks:
20+
21+
- name: Add webhook to .moduleignore
22+
shell: echo "webhook" > {{ working_dir }}.moduleignore
23+
args:
24+
executable: /bin/bash
25+
environment: "{{ common_environment }}"
26+
2027
- name: Set database with Rosemary
2128
shell: |
2229
source {{ working_dir }}venv/bin/activate
2330
cd {{ working_dir }}
24-
rosemary db:migrate
31+
flask db upgrade
2532
rosemary db:seed -y --reset
2633
args:
2734
executable: /bin/bash

0 commit comments

Comments
 (0)