https://github.com/coloredcow/nextjs-init-archived
https://github.com/coloredcow/nextjs-init-archived
Last synced: 5 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/coloredcow/nextjs-init-archived
- Owner: ColoredCow
- License: mit
- Created: 2025-02-19T10:15:58.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2025-09-01T00:31:32.000Z (10 months ago)
- Last Synced: 2025-09-11T22:49:37.711Z (9 months ago)
- Language: JavaScript
- Size: 794 KB
- Stars: 0
- Watchers: 4
- Forks: 2
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# ColoredCow Next.js Boilerplate
## Getting started
### Running locally
#### Pre-requisite
1. Make sure you have the [backend](https://github.com/ColoredCow/laravel-init/blob/main/README.md) is setup and running.
2. Ensure you have Node.js installed (version requires Node.js >=18.18.0).
#### Installation steps
1. Clone the repository:
```sh
git clone https://github.com/ColoredCow/nextjs-init.git
```
2. Install dependencies:
```sh
npm install
```
3. Configure environment variables:
- Copy `.env.example` to `.env` and configure as needed.
```ini
NEXT_PUBLIC_BACKEND_URL=http://localhost:8000
```
4. Start the development server:
```sh
npm run dev
# or this if you want to run on a different port
npm run dev -- -p 8888
```
5. Open [http://localhost:3000](http://localhost:3000) in your browser to see the result.
### Customization
For information on customizing the app name, logo, and other settings, refer to the [Customization Guide](docs/customization.md).