demokratie-live / desktop

DEMOCRACY Browser App Version
Apache License 2.0
5 stars 0 forks source link

⚠️ ARCHIVED

This repostiry is now merged into the Monorepo democracy-development into the directory democracy/deskop

DEMOCRACY Desktop Version

Screenshot

πŸš€ Boilerplate and Starter for Next.js, Tailwind CSS and TypeScript ⚑️ Made with developer experience first: Next.js, TypeScript, ESLint, Prettier, Husky, Lint-Staged, VSCode, Netlify, PostCSS, Tailwind CSS.

Features

Developer experience first:

Built-in feature from Next.js:

Philosophy

Requirements

Getting started

Run the following command on your local environment:

git clone --depth=1 https://github.com/ixartz/Next-js-Boilerplate.git my-project-name
cd my-project-name
npm install

Then, you can run locally in development mode with live reload:

npm run dev

Open http://localhost:3000 with your favorite browser to see your project.

.
β”œβ”€β”€ README.md                # README file
β”œβ”€β”€ next.config.js           # Next JS configuration
β”œβ”€β”€ public                   # Public folder
β”‚   └── assets
β”‚       └── images           # Image used by default template
β”œβ”€β”€ src
β”‚   β”œβ”€β”€ layout               # Atomic layout components
β”‚   β”œβ”€β”€ pages                # Next JS pages
β”‚   β”œβ”€β”€ styles               # PostCSS style folder with Tailwind
β”‚   β”œβ”€β”€ templates            # Default template
β”‚   └── utils                # Utility folder
β”œβ”€β”€ tailwind.config.js       # Tailwind CSS configuration
└── tsconfig.json            # TypeScript configuration

Customization

You can easily configure Next js Boilerplate. Please change the following file:

Deploy to production

You can see the results locally in production mode with:

$ npm run build
$ npm run start

The generated HTML and CSS files are minified (built-in feature from Next js). It will also removed unused CSS from Tailwind CSS.

You can create an optimized production build with:

npm run build-prod

Now, your blog is ready to be deployed. All generated files are located at out folder, which you can deploy with any hosting service.

VSCode information (optional)

If you are VSCode users, you can have a better integration with VSCode by installing the suggested extension in .vscode/extension.json. The starter code comes up with Settings for a seamless integration with VSCode. The Debug configuration is also provided for frontend and backend debugging experience.

Pro tips: if you need a project wide type checking with TypeScript, you can run a build with Cmd + Shift + B on Mac.

Contributions

Everyone is welcome to contribute to this project. Feel free to open an issue if you have question or found a bug.

License

Licensed under the MIT License, Copyright Β© 2022

See LICENSE for more information.