Skip to content
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

[Backport master] Fix the demo serve #314

Merged
merged 1 commit into from
Dec 14, 2023
Merged
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
1 change: 1 addition & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,7 @@ $(BUILD_DIR)/c2cgeoform_demo: build c2cgeoform/scaffolds/c2cgeoform c2cgeoform_d
poetry run cookiecutter --no-input --output-dir=$(dir $@) c2cgeoform/scaffolds/c2cgeoform/ \
project=c2cgeoform_demo package=c2cgeoform_demo \
package_logger=c2cgeoform_demo pyramid_docs_branch=master
sed -i 's#@localhost:5432/c2cgeoform_demo#@localhost:54321/c2cgeoform_demo_tests#g' $@/development.ini
cp c2cgeoform_demo_dev.mk $@/dev.mk

.PHONY: update-catalog
Expand Down
3 changes: 2 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,8 @@ include = [
"c2cgeoform/py.typed",
"c2cgeoform/scaffolds/c2cgeoform/**",
"c2cgeoform/templates/**",
"c2cgeoform/static/**"
"c2cgeoform/static/**",
"c2cgeoform/static/dist/*",
]
exclude = ["c2cgeoform/static/node_modules/**"]
packages = [{ include = "c2cgeoform" }]
Expand Down
Loading