├── .gitignore ├── CODEOWNERS ├── CONTRIBUTING ├── LICENSE ├── README.md ├── binaries ├── server_darwin_amd64 ├── server_linux_amd64 └── server_windows_amd64.exe ├── compile.sh └── server ├── .gitignore ├── assets └── menu.json ├── file_test.go ├── logging.go ├── main.go ├── menu.go ├── model_test.go ├── rice-box.go ├── server.go ├── server_test.go ├── storage.go └── storage_test.go /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/FEF-UdaciMeals-Backbone-Server/HEAD/.gitignore -------------------------------------------------------------------------------- /CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/FEF-UdaciMeals-Backbone-Server/HEAD/CODEOWNERS -------------------------------------------------------------------------------- /CONTRIBUTING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/FEF-UdaciMeals-Backbone-Server/HEAD/CONTRIBUTING -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/FEF-UdaciMeals-Backbone-Server/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/FEF-UdaciMeals-Backbone-Server/HEAD/README.md -------------------------------------------------------------------------------- /binaries/server_darwin_amd64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/FEF-UdaciMeals-Backbone-Server/HEAD/binaries/server_darwin_amd64 -------------------------------------------------------------------------------- /binaries/server_linux_amd64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/FEF-UdaciMeals-Backbone-Server/HEAD/binaries/server_linux_amd64 -------------------------------------------------------------------------------- /binaries/server_windows_amd64.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/FEF-UdaciMeals-Backbone-Server/HEAD/binaries/server_windows_amd64.exe -------------------------------------------------------------------------------- /compile.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/FEF-UdaciMeals-Backbone-Server/HEAD/compile.sh -------------------------------------------------------------------------------- /server/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | server 3 | -------------------------------------------------------------------------------- /server/assets/menu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/FEF-UdaciMeals-Backbone-Server/HEAD/server/assets/menu.json -------------------------------------------------------------------------------- /server/file_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/FEF-UdaciMeals-Backbone-Server/HEAD/server/file_test.go -------------------------------------------------------------------------------- /server/logging.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/FEF-UdaciMeals-Backbone-Server/HEAD/server/logging.go -------------------------------------------------------------------------------- /server/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/FEF-UdaciMeals-Backbone-Server/HEAD/server/main.go -------------------------------------------------------------------------------- /server/menu.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/FEF-UdaciMeals-Backbone-Server/HEAD/server/menu.go -------------------------------------------------------------------------------- /server/model_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/FEF-UdaciMeals-Backbone-Server/HEAD/server/model_test.go -------------------------------------------------------------------------------- /server/rice-box.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/FEF-UdaciMeals-Backbone-Server/HEAD/server/rice-box.go -------------------------------------------------------------------------------- /server/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/FEF-UdaciMeals-Backbone-Server/HEAD/server/server.go -------------------------------------------------------------------------------- /server/server_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/FEF-UdaciMeals-Backbone-Server/HEAD/server/server_test.go -------------------------------------------------------------------------------- /server/storage.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/FEF-UdaciMeals-Backbone-Server/HEAD/server/storage.go -------------------------------------------------------------------------------- /server/storage_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/FEF-UdaciMeals-Backbone-Server/HEAD/server/storage_test.go --------------------------------------------------------------------------------