initial
authorxangelo <git@xangelo.ca>
Mon, 14 Mar 2022 19:37:54 +0000 (15:37 -0400)
committerxangelo <git@xangelo.ca>
Mon, 14 Mar 2022 19:37:54 +0000 (15:37 -0400)
commit9cec2c639563092ed050716db1e7e4657f937bf5
treea9854583a2d4da7f8bcdf6b0d8c7d7001acabc69
initial
60 files changed:
.gitignore [new file with mode: 0644]
docker-compose.yml [new file with mode: 0644]
nginx.conf [new file with mode: 0644]
package-lock.json [new file with mode: 0644]
package.json [new file with mode: 0644]
prisma/migrations/20220312044658_create_player/migration.sql [new file with mode: 0644]
prisma/migrations/20220312061111_init/migration.sql [new file with mode: 0644]
prisma/migrations/20220314034840_auth_tokens/migration.sql [new file with mode: 0644]
prisma/migrations/20220314040343_unsure/migration.sql [new file with mode: 0644]
prisma/migrations/20220314042540_add_zones/migration.sql [new file with mode: 0644]
prisma/migrations/20220314043022_multiple_biome_to_a_zone/migration.sql [new file with mode: 0644]
prisma/migrations/20220314140620_remove_zones/migration.sql [new file with mode: 0644]
prisma/migrations/20220314142325_create_biome_no_player/migration.sql [new file with mode: 0644]
prisma/migrations/20220314142530_create_biome_no_player/migration.sql [new file with mode: 0644]
prisma/migrations/20220314152915_max_steps/migration.sql [new file with mode: 0644]
prisma/migrations/migration_lock.toml [new file with mode: 0644]
prisma/schema.prisma [new file with mode: 0644]
src/api.ts [new file with mode: 0644]
src/formulas.ts [new file with mode: 0644]
src/lib/cache.ts [new file with mode: 0644]
src/lib/db.ts [new file with mode: 0644]
src/lib/http-errors.ts [new file with mode: 0644]
src/lib/logger.ts [new file with mode: 0644]
src/lib/server.ts [new file with mode: 0644]
src/lib/time.ts [new file with mode: 0644]
src/public/app/api.ts [new file with mode: 0644]
src/public/app/components.ts [new file with mode: 0644]
src/public/app/events.ts [new file with mode: 0644]
src/public/app/game.ts [new file with mode: 0644]
src/public/app/sections/overview.ts [new file with mode: 0644]
src/public/assets/biomes/fields.jpg [new file with mode: 0644]
src/public/assets/discord-avatar.png [new file with mode: 0644]
src/public/assets/discord-logo-purple.png [new file with mode: 0644]
src/public/assets/discord-logo.png [new file with mode: 0644]
src/public/assets/icons/exp.png [new file with mode: 0644]
src/public/assets/icons/fish.png [new file with mode: 0644]
src/public/assets/icons/fishing_rod.png [new file with mode: 0644]
src/public/assets/icons/hp.png [new file with mode: 0644]
src/public/assets/icons/luck.png [new file with mode: 0644]
src/public/assets/icons/money-bag.png [new file with mode: 0644]
src/public/assets/icons/pow.png [new file with mode: 0644]
src/public/assets/icons/quirk.png [new file with mode: 0644]
src/public/assets/icons/stamina.png [new file with mode: 0644]
src/public/assets/icons/woosh.png [new file with mode: 0644]
src/public/assets/icons/wow.png [new file with mode: 0644]
src/public/assets/icons/zest.png [new file with mode: 0644]
src/public/assets/logo.png [new file with mode: 0644]
src/public/assets/progress-bar-bg.png [new file with mode: 0644]
src/public/bundle.js [new file with mode: 0644]
src/public/css/bootstrap.min.css [new file with mode: 0644]
src/public/css/ui.css [new file with mode: 0644]
src/public/index.html [new file with mode: 0644]
src/routes/account/create.ts [new file with mode: 0644]
src/routes/account/index.ts [new file with mode: 0644]
src/routes/account/login.ts [new file with mode: 0644]
src/routes/healthcheck.ts [new file with mode: 0644]
src/routes/index.ts [new file with mode: 0644]
src/routes/move.ts [new file with mode: 0644]
tsconfig.json [new file with mode: 0644]
webpack.config.js [new file with mode: 0644]