Skip to content

Include Company Tax Number #783

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Draft
wants to merge 9 commits into
base: develop
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,6 @@ node_modules/
# Production env file
.env

test-results/
test-results/

*.DS_Store
1 change: 1 addition & 0 deletions docker/mariadb/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ COPY ./docker-entrypoint.sh /docker-entrypoint-initdb.d/docker-initialize.sh
# the mysql user inside the MySQL Docker container.
RUN chown -R mysql:root /docker-entrypoint-initdb.d
RUN chown -R mysql:root /scripts
# RUN chown -R mysql:root /tmp

CMD ["mysqld"]
EXPOSE 3306
3 changes: 2 additions & 1 deletion docker/mariadb/my.cnf
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
[mysqld]
bind-address = 0.0.0.0
bind-address = 0.0.0.0
innodb_temp_data_file_path = ../../../tmp/ibtmp1:12M:autoextend
5 changes: 4 additions & 1 deletion docker/migration/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -34,5 +34,8 @@ WORKDIR /app/packages/server

RUN git clone https://github.com/vishnubob/wait-for-it.git

# Copy the migration script.
COPY ./docker/migration/start.sh ./start.sh

# Once we listen the mysql port run the migration task.
CMD ./wait-for-it/wait-for-it.sh mysql:3306 -- sh -c "node ./build/commands.js system:migrate:latest && node ./build/commands.js tenants:migrate:latest"
CMD ./start.sh
5 changes: 5 additions & 0 deletions docker/migration/start.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# Migrate the master system database.
./wait-for-it/wait-for-it.sh ${DB_HOST}:3306 -- node ./build/commands.js system:migrate:latest

# Migrate all tenants.
./wait-for-it/wait-for-it.sh ${DB_HOST}:3306 -- node ./build/commands.js tenants:migrate:latest
3 changes: 3 additions & 0 deletions packages/server/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -96,6 +96,9 @@ COPY --chown=node:node ./ ./
RUN apk update
RUN apk add python3 build-base chromium

ENV PUPPETEER_SKIP_CHROMIUM_DOWNLOAD=true
ENV PUPPETEER_EXECUTABLE_PATH=/usr/bin/chromium-browser

# Set PYHTON env
ENV PYTHON=/usr/bin/python3

Expand Down
34 changes: 0 additions & 34 deletions packages/server/resources/css/modules/credit-rtl.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading
Loading