_ _
/\ /\__ ___ _| | __ /\ /\__ _ ___| | _____
/ /_/ / _` \ \ /\ / / |/ // /_/ / _` |/ __| |/ / __|
/ __ / (_| |\ 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 pnpmClone the repo
$ git clone https://github.com/LaurierHawkHacks/ComingSoon.gitFrom your terminal, navigate to the root path of clone
$ cd path/to/your/cloneInstall dependencies
$ pnpm iRun local server
$ pnpm devIf you are developing a production application, we recommend updating the configuration to enable type aware lint rules:
- Configure the top-level
parserOptionsproperty like this:
parserOptions: {
ecmaVersion: 'latest',
sourceType: 'module',
project: ['./tsconfig.json', './tsconfig.node.json'],
tsconfigRootDir: __dirname,
},- Replace
plugin:@typescript-eslint/recommendedtoplugin:@typescript-eslint/recommended-type-checkedorplugin:@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-runtimeto theextendslist
- We welcome all contributions for further information see here