forked from KMKfw/kmk_firmware
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request KMKfw#138 from KMKfw/topic-prep-for-ckeys2019
Prep for ckeys2019: Round One
- Loading branch information
Showing
52 changed files
with
549 additions
and
363 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,81 @@ | ||
[default] | ||
access_key = | ||
access_token = | ||
add_encoding_exts = | ||
add_headers = | ||
bucket_location = US | ||
ca_certs_file = | ||
cache_file = | ||
check_ssl_certificate = True | ||
check_ssl_hostname = True | ||
cloudfront_host = cloudfront.amazonaws.com | ||
content_disposition = | ||
content_type = | ||
default_mime_type = binary/octet-stream | ||
delay_updates = False | ||
delete_after = False | ||
delete_after_fetch = False | ||
delete_removed = False | ||
dry_run = False | ||
enable_multipart = True | ||
encoding = UTF-8 | ||
encrypt = False | ||
expiry_date = | ||
expiry_days = | ||
expiry_prefix = | ||
follow_symlinks = False | ||
force = False | ||
get_continue = False | ||
gpg_command = /usr/bin/gpg | ||
gpg_decrypt = %(gpg_command)s -d --verbose --no-use-agent --batch --yes --passphrase-fd %(passphrase_fd)s -o %(output_file)s %(input_file)s | ||
gpg_encrypt = %(gpg_command)s -c --verbose --no-use-agent --batch --yes --passphrase-fd %(passphrase_fd)s -o %(output_file)s %(input_file)s | ||
gpg_passphrase = | ||
guess_mime_type = True | ||
host_base = sfo2.digitaloceanspaces.com | ||
host_bucket = %(bucket)s.sfo2.digitaloceanspaces.com | ||
human_readable_sizes = False | ||
invalidate_default_index_on_cf = False | ||
invalidate_default_index_root_on_cf = True | ||
invalidate_on_cf = False | ||
kms_key = | ||
limit = -1 | ||
limitrate = 0 | ||
list_md5 = False | ||
log_target_prefix = | ||
long_listing = False | ||
max_delete = -1 | ||
mime_type = | ||
multipart_chunk_size_mb = 15 | ||
multipart_max_chunks = 10000 | ||
preserve_attrs = True | ||
progress_meter = True | ||
proxy_host = | ||
proxy_port = 0 | ||
put_continue = False | ||
recursive = False | ||
recv_chunk = 65536 | ||
reduced_redundancy = False | ||
requester_pays = False | ||
restore_days = 1 | ||
restore_priority = Standard | ||
secret_key = | ||
send_chunk = 65536 | ||
server_side_encryption = False | ||
signature_v2 = False | ||
signurl_use_https = False | ||
simpledb_host = sdb.amazonaws.com | ||
skip_existing = False | ||
socket_timeout = 300 | ||
stats = False | ||
stop_on_error = False | ||
storage_class = | ||
throttle_max = 100 | ||
upload_id = | ||
urlencoding_mode = normal | ||
use_http_expect = False | ||
use_https = True | ||
use_mime_magic = True | ||
verbosity = WARNING | ||
website_endpoint = http://%(bucket)s.s3-website-%(location)s.amazonaws.com/ | ||
website_error = | ||
website_index = index.html |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
FROM python:3.7-alpine | ||
|
||
RUN mkdir -p /app | ||
WORKDIR /app | ||
|
||
RUN apk update && apk add alpine-sdk coreutils curl gettext git git-lfs openssh rsync wget zip | ||
|
||
RUN pip install pipenv | ||
|
||
### Get a local copy of CircuitPython and its dependencies | ||
# Our absolute baseline is 4.0.0, which (as of writing) shares MPY compat | ||
# with all future versions. Our baseline will need to update as MPY compat | ||
# changes | ||
RUN git clone --branch 4.0.0 --depth 1 https://github.com/adafruit/CircuitPython /opt/circuitpython | ||
RUN git -C /opt/circuitpython submodule update --init | ||
|
||
### Build the MPY compiler | ||
RUN make -C /opt/circuitpython/mpy-cross | ||
|
||
ENV PATH=/opt/circuitpython/mpy-cross:${PATH} |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.