I hereby claim:
- I am bomb-on on github.
- I am bomb_on (https://keybase.io/bomb_on) on keybase.
- I have a public key ASBDZ-rinKbSeqk8xHBbK8QsztdN3GT1BPcgAqKps15I8Qo
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
| $ cmake .. | |
| Re-run cmake no build system arguments | |
| CMake Warning (dev) at CMakeLists.txt:12 (set): | |
| implicitly converting 'TYPE' to 'STRING' type. | |
| This warning is for project developers. Use -Wno-dev to suppress it. | |
| -- The C compiler identification is AppleClang 11.0.3.11030032 | |
| -- The CXX compiler identification is AppleClang 11.0.3.11030032 | |
| -- Detecting C compiler ABI info |
| $ cmake .. | |
| CMake Warning (dev) at CMakeLists.txt:12 (set): | |
| implicitly converting 'TYPE' to 'STRING' type. | |
| This warning is for project developers. Use -Wno-dev to suppress it. | |
| -- The C compiler identification is AppleClang 11.0.3.11030032 | |
| -- The CXX compiler identification is AppleClang 11.0.3.11030032 | |
| -- Check for working C compiler: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc | |
| -- Check for working C compiler: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc - works |
| from pyramid.config import Configurator | |
| def main(global_config, **settings): | |
| """ This function returns a Pyramid WSGI application. | |
| """ | |
| config = Configurator(settings=settings) | |
| config.include('.models') | |
| config.add_static_view('static', 'static', cache_max_age=3600) | |
| config.include('.views') |
| from sqlalchemy import ( | |
| Column, | |
| Index, | |
| Integer, | |
| Text, | |
| ) | |
| from sqlalchemy.ext.declarative import declarative_base | |
| from sqlalchemy import create_engine |