Make examples easy to use (#798)

* [monorepo][m] - remove nx from simple-example

* [simple-example][sm] - install octokit and simplify README

* [simple-example][m] - fix linting

* [monorepo][m] - simplify examples

* [monorepo][sm] - update docs
This commit is contained in:
Luccas Mateus
2023-04-25 07:39:34 -03:00
committed by GitHub
parent e8bf4daf5f
commit 5305cc4c2f
25 changed files with 11948 additions and 355 deletions

View File

@@ -4,10 +4,9 @@ import { getProject } from '../lib/octokit';
import getConfig from 'next/config';
export async function getStaticProps() {
const project_name = getConfig().serverRuntimeConfig.project_name;
const jsonDirectory = path.join(
process.cwd(),
`/examples/${project_name}/datasets.json`
'/datasets.json'
);
const repos = await fs.readFile(jsonDirectory, 'utf8');
const github_pat = getConfig().serverRuntimeConfig.github_pat;
@@ -83,7 +82,7 @@ export function Datasets({ projects }) {
</thead>
<tbody className="divide-y divide-gray-200">
{projects.map((project) => (
<tr>
<tr key={project.id}>
<td className="whitespace-nowrap px-3 py-4 text-sm text-gray-500">
{project.repo_config.name
? project.repo_config.name