owncast/web
2020-10-03 16:12:21 -07:00
..
pages Add linting and code formatting 2020-09-30 18:47:18 -07:00
public Initial commit from Create Next App 2020-09-30 15:13:06 -07:00
styles Add sass support for styling 2020-09-30 15:39:30 -07:00
.editorconfig Bootstrap the admin project 2020-09-30 15:13:06 -07:00
.eslintrc.js Add linting and code formatting 2020-09-30 18:47:18 -07:00
.gitignore add gitignore 2020-10-03 16:12:21 -07:00
.prettierignore Add linting and code formatting 2020-09-30 18:47:18 -07:00
.prettierrc Add linting and code formatting 2020-09-30 18:47:18 -07:00
LICENSE Initial commit 2020-09-30 14:47:14 -07:00
next-env.d.ts Bootstrap the admin project 2020-09-30 15:13:06 -07:00
next.config.js Build should expect /admin to be the root 2020-09-30 17:12:22 -07:00
package-lock.json Add linting and code formatting 2020-09-30 18:47:18 -07:00
package.json Add linting and code formatting 2020-09-30 18:47:18 -07:00
README.md Specify that the root of the web app is /admin 2020-09-30 18:04:50 -07:00
tsconfig.json Bootstrap the admin project 2020-09-30 15:13:06 -07:00
yarn.lock add gitignore 2020-10-03 16:12:21 -07:00

This is a Next.js project with TypeScript, Sass styling, using Ant Design UI components.

Getting Started

First, run the development server:

npm run dev
# or
yarn dev

Open http://localhost:3000/admin with your browser to see the result.

You can start editing a page by modifying pages/something.js. The page auto-updates as you edit the file.

Add new pages by adding files to the pages directory and routes will be available for this new page component.

Since this project hits API endpoints you should make requests in componentDidMount, and not in getStaticProps, since they're not static and we don't want to fetch them at build time, but instead at runtime.

Learn More

To learn more about Next.js, take a look at the following resources:

You can check out the Next.js GitHub repository - your feedback and contributions are welcome!