├── .gitignore ├── FAQ.md ├── INTERNALS ├── README.md ├── cloudformation.yaml ├── contrib └── getmaxids.sh ├── import.py ├── nginx.conf └── readmeta.sh /.gitignore: -------------------------------------------------------------------------------- 1 | 20* 2 | *.swp 3 | repo 4 | .import-* 5 | -------------------------------------------------------------------------------- /FAQ.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scy/levitation/HEAD/FAQ.md -------------------------------------------------------------------------------- /INTERNALS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scy/levitation/HEAD/INTERNALS -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scy/levitation/HEAD/README.md -------------------------------------------------------------------------------- /cloudformation.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scy/levitation/HEAD/cloudformation.yaml -------------------------------------------------------------------------------- /contrib/getmaxids.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scy/levitation/HEAD/contrib/getmaxids.sh -------------------------------------------------------------------------------- /import.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scy/levitation/HEAD/import.py -------------------------------------------------------------------------------- /nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scy/levitation/HEAD/nginx.conf -------------------------------------------------------------------------------- /readmeta.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scy/levitation/HEAD/readmeta.sh --------------------------------------------------------------------------------