_ _
/\ /\__ ___ _| | __ /\ /\__ _ ___| | _____
/ /_/ / _` \ \ /\ / / |/ // /_/ / _` |/ __| |/ / __|
/ __ / (_| |\ V V /| </ __ / (_| | (__| <\__ \
\/ /_/ \__,_| \_/\_/ |_|\_\/ /_/ \__,_|\___|_|\_\___/
2024
The official coming soon page for HawkHacks - see here.
Install Node.js
https://nodejs.org/en/download/
Install pnpm using npm
$ npm install -g pnpm
Clone the repo
$ git clone https://github.com/LaurierHawkHacks/ComingSoon.git
From your terminal, navigate to the root path of clone
$ cd path/to/your/clone
Install dependencies
$ pnpm i
Run local server
$ pnpm dev
If you are developing a production application, we recommend updating the configuration to enable type aware lint rules:
- Configure the top-level
parserOptions
property like this:
parserOptions: {
ecmaVersion: 'latest',
sourceType: 'module',
project: ['./tsconfig.json', './tsconfig.node.json'],
tsconfigRootDir: __dirname,
},
- Replace
plugin:@typescript-eslint/recommended
toplugin:@typescript-eslint/recommended-type-checked
orplugin:@typescript-eslint/strict-type-checked
- Optionally add
plugin:@typescript-eslint/stylistic-type-checked
- Install eslint-plugin-react and add
plugin:react/recommended
&plugin:react/jsx-runtime
to theextends
list
- We welcome all contributions for further information see here