Showing
6 changed files
with
70 additions
and
45 deletions
README.md
deleted
100644 → 0
1 | -**Edit a file, create a new file, and clone from Bitbucket in under 2 minutes** | ||
2 | - | ||
3 | -When you're done, you can delete the content in this README and update the file with details for others getting started with your repository. | ||
4 | - | ||
5 | -*We recommend that you open this README in another tab as you perform the tasks below. You can [watch our video](https://youtu.be/0ocf7u76WSo) for a full demo of all the steps in this tutorial. Open the video in a new tab to avoid leaving Bitbucket.* | ||
6 | - | ||
7 | ---- | ||
8 | - | ||
9 | -## Edit a file | ||
10 | - | ||
11 | -You’ll start by editing this README file to learn how to edit a file in Bitbucket. | ||
12 | - | ||
13 | -1. Click **Source** on the left side. | ||
14 | -2. Click the README.md link from the list of files. | ||
15 | -3. Click the **Edit** button. | ||
16 | -4. Delete the following text: *Delete this line to make a change to the README from Bitbucket.* | ||
17 | -5. After making your change, click **Commit** and then **Commit** again in the dialog. The commit page will open and you’ll see the change you just made. | ||
18 | -6. Go back to the **Source** page. | ||
19 | - | ||
20 | ---- | ||
21 | - | ||
22 | -## Create a file | ||
23 | - | ||
24 | -Next, you’ll add a new file to this repository. | ||
25 | - | ||
26 | -1. Click the **New file** button at the top of the **Source** page. | ||
27 | -2. Give the file a filename of **contributors.txt**. | ||
28 | -3. Enter your name in the empty file space. | ||
29 | -4. Click **Commit** and then **Commit** again in the dialog. | ||
30 | -5. Go back to the **Source** page. | ||
31 | - | ||
32 | -Before you move on, go ahead and explore the repository. You've already seen the **Source** page, but check out the **Commits**, **Branches**, and **Settings** pages. | ||
33 | - | ||
34 | ---- | ||
35 | - | ||
36 | -## Clone a repository | ||
37 | - | ||
38 | -Use these steps to clone from SourceTree, our client for using the repository command-line free. Cloning allows you to work on your files locally. If you don't yet have SourceTree, [download and install first](https://www.sourcetreeapp.com/). If you prefer to clone from the command line, see [Clone a repository](https://confluence.atlassian.com/x/4whODQ). | ||
39 | - | ||
40 | -1. You’ll see the clone button under the **Source** heading. Click that button. | ||
41 | -2. Now click **Check out in SourceTree**. You may need to create a SourceTree account or log in. | ||
42 | -3. When you see the **Clone New** dialog in SourceTree, update the destination path and name if you’d like to and then click **Clone**. | ||
43 | -4. Open the directory you just created to see your repository’s files. | ||
44 | - | ||
45 | -Now that you're more familiar with your Bitbucket repository, go ahead and add a new file locally. You can [push your change back to Bitbucket with SourceTree](https://confluence.atlassian.com/x/iqyBMg), or you can [add, commit,](https://confluence.atlassian.com/x/8QhODQ) and [push from the command line](https://confluence.atlassian.com/x/NQ0zDQ). | ||
... | \ No newline at end of file | ... | \ No newline at end of file |
back/.babelrc
0 → 100644
back/README.md
0 → 100644
1 | +# Capstone design | ||
2 | + | ||
3 | +1st semester capstone design project | ||
4 | + | ||
5 | +Subject : Making website in order to practice web tech | ||
6 | + | ||
7 | +sub-subject : making chat site using JS | ||
8 | + | ||
9 | + | ||
10 | +# Schedule | ||
11 | + | ||
12 | +- 4/6 ~ 4/12 | ||
13 | +- [ ] setting development environment | ||
14 | + | ||
15 | + | ||
16 | +- 4/13 ~ 4/19 | ||
17 | +- [ ] login, sign up | ||
18 | + |
back/nodemon.json
0 → 100644
back/package.json
0 → 100644
1 | +{ | ||
2 | + "name": "capstone2", | ||
3 | + "version": "1.0.0", | ||
4 | + "description": "1st semester capstone design project", | ||
5 | + "scripts": { | ||
6 | + "dev": "nodemon --exec babel-node src/server.js" | ||
7 | + }, | ||
8 | + "repository": { | ||
9 | + "type": "git", | ||
10 | + "url": "git+https://vel1024@bitbucket.org/vel1024/capstone2.git" | ||
11 | + }, | ||
12 | + "author": "sdy, kms", | ||
13 | + "license": "ISC", | ||
14 | + "homepage": "https://bitbucket.org/vel1024/capstone2#readme", | ||
15 | + "dependencies": { | ||
16 | + "dotenv": "^8.2.0", | ||
17 | + "graphql-yoga": "^1.18.3" | ||
18 | + }, | ||
19 | + "devDependencies": { | ||
20 | + "@babel/core": "^7.9.0", | ||
21 | + "@babel/node": "^7.8.7", | ||
22 | + "@babel/preset-env": "^7.9.0", | ||
23 | + "nodemon": "^2.0.2" | ||
24 | + } | ||
25 | +} |
back/src/server.js
0 → 100644
1 | +import { GraphQLServer } from "graphql-yoga"; | ||
2 | +import dotenv from "dotenv"; | ||
3 | +dotenv.config(); | ||
4 | + | ||
5 | +const PORT = process.env.PORT || 4000; | ||
6 | + | ||
7 | +const typeDefs = ` | ||
8 | + type Query { | ||
9 | + hello(name: String): String | ||
10 | + } | ||
11 | +`; | ||
12 | + | ||
13 | +const resolvers = { | ||
14 | + Query: { | ||
15 | + hello: () => "hello", | ||
16 | + }, | ||
17 | +}; | ||
18 | + | ||
19 | +const server = new GraphQLServer({ typeDefs, resolvers }); | ||
20 | + | ||
21 | +server.start(() => console.log(`server is running : http://localhost:${PORT}`)); |
-
Please register or login to post a comment