Skip to content

Commit 13e538d

Browse files
committed
initial commit
0 parents  commit 13e538d

File tree

94 files changed

+42136
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

94 files changed

+42136
-0
lines changed

.env.example

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
NODE_ENV = development
2+
PORT = 5000
3+
JWT_SECRET = YOUR_JWT_SECRET
4+
MONGO_URI = YOUR_MONGO_URI

.gitignore

+30
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
.env
2+
node_modules
3+
4+
5+
6+
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
7+
8+
# dependencies
9+
/client/node_modules
10+
/client/.pnp
11+
/client.pnp.js
12+
13+
# testing
14+
/client/coverage
15+
16+
# production
17+
/client/build
18+
19+
# misc
20+
.DS_Store
21+
/client.env
22+
/client.env.local
23+
/client.env.development.local
24+
/client.env.test.local
25+
/client.env.production.local
26+
27+
/clientnpm-debug.log*
28+
/clientyarn-debug.log*
29+
/clientyarn-error.log*
30+
/temp.txt

README.md

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
# CfLockOut
2+
3+
A web app to practice Codeforces Problems with friends in a Lockout contest format.
4+
5+
<!-- ## How to use?
6+
7+
## Installation -->
8+
9+
<!-- 1. Fork and clone the repository locally.
10+
2. Go to the root and copy the environmet variables from .env.example. Make a new .env file in the root and paste the environment variables here.
11+
3. In the root, run command -
12+
`$ npm run setup`
13+
to install frontend and backend dependencies.
14+
4. To run the development server locally, run -
15+
`$ npm run dev` -->

0 commit comments

Comments
 (0)