Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/tobyab/2022
A summary of my 2022!
https://github.com/tobyab/2022
Last synced: 5 days ago
JSON representation
A summary of my 2022!
- Host: GitHub
- URL: https://github.com/tobyab/2022
- Owner: tobyab
- Created: 2022-12-04T19:46:07.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2023-01-10T01:08:01.000Z (almost 2 years ago)
- Last Synced: 2024-05-02T04:52:22.187Z (8 months ago)
- Language: TypeScript
- Size: 90.8 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# developedbytoby/nextjs-ts-tailwind-starter
🌐 Quick and simple Next.js, Typescript and Tailwind starter!
## Getting Started!
There are a few steps to getting started. Here they are!
### 1. Cloning the repo
1. Using `create-next-app`
``` bash
yarn create next-app -e https://github.com/developedbytoby/nextjs-ts-tailwind-starter your-app
```2. Using the template
![Green button with the text "Use this template"](https://tobyl.ink/next-ts-tailwind.png)
3. Deploy to Vercel
[![Deploy with Vercel](https://vercel.com/button)](https://vercel.com/new/clone?repository-url=https%3A%2F%2Fgithub.com%2Fdevelopedbytoby%2Fnextjs-ts-tailwind-starter)
### 1. Installing dependencies
Once we have the code one our local machine, we then need to make sure we have all of the dependencies we need!
1. Install
``` bash
yarn
```2. Spin up the development server
``` bash
yarn dev
```Alternatively, we can easily run both of these using this command.
``` bash
yarn && yarn dev
```## Run into any issues?
Don't worry about it, we all run into problems! And, if you do, please open an issue on GitHub, and I'll be happy to respond to it!
### Helpful resources
- [Next.js docs](https://nextjs.org/docs/getting-started)
- [React docs](https://reactjs.org/docs/getting-started.html)
- [Tailwind docs](https://tailwindcss.com/docs/installation)---
After all of this, we are ready to start coding!