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

Deploy #5

Draft
wants to merge 2 commits into
base: main
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
9 changes: 8 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,11 @@
.env
.static
build
dev_*.ipynb
dev_*.ipynb
.venv
conf/env
conf/env.deployed
conf/httpd.conf
conf/httpd.conf.deployed
conf/crontab
conf/crontab.deployed
9 changes: 9 additions & 0 deletions conf/env-example
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
SECRET_KEY=
HIDE_DEBUG_TOOLBAR=True
DATABASE_URL=
ALLOWED_HOSTS=
CACHE_FILE=
BUGS_EMAIL=
EMAIL_HOST=
EMAIL_PORT=
GOOGLE_ANALYTICS=
1 change: 1 addition & 0 deletions conf/httpd.conf-example
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# Example Apache config
2 changes: 2 additions & 0 deletions data/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
source
compiled
1 change: 0 additions & 1 deletion data/compiled/.gitignore

This file was deleted.

2 changes: 0 additions & 2 deletions data/source/.gitignore

This file was deleted.

4 changes: 3 additions & 1 deletion script/bootstrap
Original file line number Diff line number Diff line change
Expand Up @@ -34,4 +34,6 @@ if ! grep ^DEVENV .env ; then
;;
esac
done
fi
fi

mkdir -p data/{source,compiled}