├── .gitattributes ├── Dockerfile ├── LICENSE.md ├── README.md ├── challenge-1-solution.md ├── src ├── database.sql ├── run.sh └── sqlSetup └── web ├── .htaccess ├── api.php ├── config.php ├── css └── custom.css ├── db_connect.php ├── functions.php ├── index.html └── js ├── clipboard.js ├── cookie.js └── custom.js /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xib3rR4dAr/WannaRace/HEAD/.gitattributes -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xib3rR4dAr/WannaRace/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xib3rR4dAr/WannaRace/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xib3rR4dAr/WannaRace/HEAD/README.md -------------------------------------------------------------------------------- /challenge-1-solution.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xib3rR4dAr/WannaRace/HEAD/challenge-1-solution.md -------------------------------------------------------------------------------- /src/database.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xib3rR4dAr/WannaRace/HEAD/src/database.sql -------------------------------------------------------------------------------- /src/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xib3rR4dAr/WannaRace/HEAD/src/run.sh -------------------------------------------------------------------------------- /src/sqlSetup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xib3rR4dAr/WannaRace/HEAD/src/sqlSetup -------------------------------------------------------------------------------- /web/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xib3rR4dAr/WannaRace/HEAD/web/.htaccess -------------------------------------------------------------------------------- /web/api.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xib3rR4dAr/WannaRace/HEAD/web/api.php -------------------------------------------------------------------------------- /web/config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xib3rR4dAr/WannaRace/HEAD/web/config.php -------------------------------------------------------------------------------- /web/css/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xib3rR4dAr/WannaRace/HEAD/web/css/custom.css -------------------------------------------------------------------------------- /web/db_connect.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xib3rR4dAr/WannaRace/HEAD/web/db_connect.php -------------------------------------------------------------------------------- /web/functions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xib3rR4dAr/WannaRace/HEAD/web/functions.php -------------------------------------------------------------------------------- /web/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xib3rR4dAr/WannaRace/HEAD/web/index.html -------------------------------------------------------------------------------- /web/js/clipboard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xib3rR4dAr/WannaRace/HEAD/web/js/clipboard.js -------------------------------------------------------------------------------- /web/js/cookie.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xib3rR4dAr/WannaRace/HEAD/web/js/cookie.js -------------------------------------------------------------------------------- /web/js/custom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xib3rR4dAr/WannaRace/HEAD/web/js/custom.js --------------------------------------------------------------------------------