This is a Next.js project bootstrapped with create-next-app
.
Run npm run dev
to run the development server
Open http://localhost:3000 with your browser to see the result.
You can start editing the page by modifying app/page.tsx
. The page auto-updates as you edit the file.
This project uses next/font
to automatically optimize and load Inter, a custom Google Font.
To learn more about Next.js, take a look at the following resources:
- Next.js Documentation - learn about Next.js features and API.
- Learn Next.js - an interactive Next.js tutorial.
You can check out the Next.js GitHub repository - your feedback and contributions are welcome!
The easiest way to deploy your Next.js app is to use the Vercel Platform from the creators of Next.js.
Check out our Next.js deployment documentation for more details.
Since we do not have authentication or authorization on the site for now, all data stored in the backend has been stored in source see leagueData. In order to transition to a DB backend, we have created two new npm stages under the "scripts" section of package.json. The are seed:dev
and seed:prod
, which will run the seedDb script.
- Get Secrets in appopriate
.env*
file.- If you are authenticated to Vercel and have the vercel CLI installed
- Run
vercel env pull
in order to setup the build. - Run
vercel env pull .env.development.local
in order to setup to run theseed:dev
command. - Run
vercel env pull --environment production .env.production.local
in order to setup to run theseed:prod
command.
- Run
- If you are not authenticated
- Get in touch with @jmeixner in order to arrange some credential exchange
- If you are authenticated to Vercel and have the vercel CLI installed
- Run either
seed:dev
orseed:prod
dpending