diff --git a/README.md b/README.md index 062b294..386b244 100644 --- a/README.md +++ b/README.md @@ -5,22 +5,32 @@ Next.js app to show, update, commit, and push dependency changes to GitHub. > Requires: Docker, Node.js (>=18) +```shell +$ git clone git@github.com:nomad-mystic/github-dependencies-next.git +$ cd ./github-dependencies-next +$ nvm use +$ npm install +``` + * Build Images: - * ```shell - $ make build-development - ``` +```shell +$ make build-development +``` + * Start Containers: - * ```shell - $ make start-development - ``` +```shell +$ make start-development +``` + * Stop Containers: - * ```shell - $ make stop-development - ``` +```shell +$ make stop-development +``` + * Remove Containers: - * ```shell - $ make remove-development - ``` +```shell +$ make remove-development +``` ### MongoDB: Connect to Docker MongoDB container with Compass. @@ -34,7 +44,7 @@ Helpful commands * ```$ docker exec -it development-mongo-dev-1 bash``` * ```$ docker inspect {CONTAINER_NAME}``` -## Helpful Links: +### Helpful Links: * https://docs.docker.com/ * https://docs.docker.com/compose/reference/ * https://nextjs.org/docs diff --git a/package-lock.json b/package-lock.json index e4f349e..8c17d48 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,13 @@ { "name": "@nomadmystic/github-dependencies-next", - "version": "0.1.0", + "version": "0.1.4", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "@nomadmystic/github-dependencies-next", - "version": "0.1.0", + "version": "0.1.4", + "license": "ISC", "dependencies": { "autoprefixer": "latest", "bcrypt": "^5.1.1", @@ -43,7 +44,6 @@ "@radix-ui/react-slot": "^1.0.2", "@types/bcrypt": "^5.0.0", "@types/express": "^4.17.18", - "@types/mongoose": "^5.11.97", "@types/morgan": "^1.9.6", "@types/node": "^20.7.1", "@types/nodemon": "^1.19.3", @@ -753,16 +753,6 @@ "integrity": "sha512-Ys+/St+2VF4+xuY6+kDIXGxbNRO0mesVg0bbxEfB97Od1Vjpjx9KD1qxs64Gcb3CWPirk9Xe+PT4YiiHQ9T+eg==", "dev": true }, - "node_modules/@types/mongoose": { - "version": "5.11.97", - "resolved": "https://registry.npmjs.org/@types/mongoose/-/mongoose-5.11.97.tgz", - "integrity": "sha512-cqwOVYT3qXyLiGw7ueU2kX9noE8DPGRY6z8eUxudhXY8NZ7DMKYAxyZkLSevGfhCX3dO/AoX5/SO9lAzfjon0Q==", - "deprecated": "Mongoose publishes its own types, so you do not need to install this package.", - "dev": true, - "dependencies": { - "mongoose": "*" - } - }, "node_modules/@types/morgan": { "version": "1.9.6", "resolved": "https://registry.npmjs.org/@types/morgan/-/morgan-1.9.6.tgz", diff --git a/package.json b/package.json index 6a788f6..97804da 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@nomadmystic/github-dependencies-next", - "version": "0.1.3", + "version": "0.1.4", "scripts": { "dev": "npm run development", "development": "nodemon", @@ -57,7 +57,6 @@ "@radix-ui/react-slot": "^1.0.2", "@types/bcrypt": "^5.0.0", "@types/express": "^4.17.18", - "@types/mongoose": "^5.11.97", "@types/morgan": "^1.9.6", "@types/node": "^20.7.1", "@types/nodemon": "^1.19.3", diff --git a/src/app/page.tsx b/src/app/page.tsx index ac4a760..ab195b6 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -3,6 +3,7 @@ import React, { useEffect } from 'react'; import Image from 'next/image' +import Link from 'next/link'; export default function Home() { useEffect(() => { @@ -10,118 +11,19 @@ export default function Home() { }, []); return ( -
-
-

- Get started by editing  - src/app/page.tsx keith -

-
- - By{' '} - Vercel Logo - -
-
- -
- Next.js Logo -
- -
- -

- Docs{' '} - - -> - -

-

- Find in-depth information about Next.js features and API. -

-
- - -

- Learn{' '} - - -> - -

-

- Learn about Next.js in an interactive course with quizzes! -

-
- - -

- Templates{' '} - - -> - -

-

- Explore the Next.js 13 playground. -

-
- - -

- Deploy{' '} - - -> - -

-

- Instantly deploy your Next.js site to a shareable URL with Vercel. -

-
-
+
+
+

Github Dependencies

+
+ +
+

WIP Components

+ +
+ Login + Create Account +
+
) }