Skip to content

Commit

Permalink
Move repo from udilia to dimimikadze
Browse files Browse the repository at this point in the history
  • Loading branch information
Dimi Mikadze committed Dec 12, 2019
1 parent 7c5859d commit 52c1b02
Show file tree
Hide file tree
Showing 6 changed files with 17 additions and 23 deletions.
14 changes: 6 additions & 8 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
# Contributing to Create Social Network

Create Social Network is a open source educational project maintained by [udilia](https://udilia.com/).

Our main responsibility is to be up to date with used technologies, keep core features of social network and don't add tailored ones for specific users.

All efforts to contribute are highly appreciated, we recommend you talk to a maintainer prior to spending a lot of time making a pull request that may not align with the project roadmap.
Expand All @@ -22,30 +20,30 @@ frontend
lib
```

#### [api](https://github.com/udilia/create-social-network/tree/master/api)
#### [api](https://github.com/dimimikadze/create-social-network/tree/master/api)

This package contains API for Create Social Network using Node, GraphQL and MongoDB.

#### [frontend](https://github.com/udilia/create-social-network/tree/master/frontend)
#### [frontend](https://github.com/dimimikadze/create-social-network/tree/master/frontend)

Is a React frontend for Create Social Network.

#### [lib](https://github.com/udilia/create-social-network/tree/master/lib)
#### [lib](https://github.com/dimimikadze/create-social-network/tree/master/lib)

This package includes Node.js command line script that is published to NPM as a `create-social-network` that helps users to install the app with one command.

## Development Workflow

1. Clone the repo with git clone `https://github.com/udilia/create-social-network.git`
1. Clone the repo with git clone `https://github.com/dimimikadze/create-social-network.git`
2. Run `yarn` in the root folder to install dependencies.
3. and then run `yarn start`

## Reporting an issue

Before submitting an issue you need to make sure:

- You have already searched for related [issues](https://github.com/udilia/create-social-network/issues), and found none open (if you found a related closed issue, please link to it from your post).
- You have already searched for related [issues](https://github.com/dimimikadze/create-social-network/issues), and found none open (if you found a related closed issue, please link to it from your post).
- Your issue title is concise and on-topic.
- You can and do provide steps to reproduce your issue.
- Make sure the [issue template](https://github.com/udilia/create-social-network/tree/master/.github/ISSUE_TEMPLATE) is respected.
- Make sure the [issue template](https://github.com/dimimikadze/create-social-network/tree/master/.github/ISSUE_TEMPLATE) is respected.
- Make sure your issue body is readable and [well formated](https://guides.github.com/features/mastering-markdown/).
2 changes: 1 addition & 1 deletion LICENSE.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Copyright (c) 2019 udilia.
Copyright (c) 2019 dimimikadze.

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

Expand Down
12 changes: 4 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -128,18 +128,14 @@ The page will automatically reload if you make changes to the code.

In development mode we are starting `api` and `frontend` servers with one command, but we need to deploy them separately.

[API Deployment](https://github.com/udilia/create-social-network/tree/master/api#api-deployment-to-heroku)
[API Deployment](https://github.com/dimimikadze/create-social-network/tree/master/api#api-deployment-to-heroku)

[Frontend Deployment](https://github.com/udilia/create-social-network/tree/master/frontend#frontend-deployment-to-netlify)
[Frontend Deployment](https://github.com/dimimikadze/create-social-network/tree/master/frontend#frontend-deployment-to-netlify)

## Contributing

Please read our [CONTRIBUTING.md](https://github.com/udilia/create-social-network/blob/master/CONTRIBUTING.md) before submitting a Pull Request to the project.

## Credits

Many ideas for CLI tool and Readme file are taken from [Create React App](https://github.com/facebook/create-react-app) project.
Please read our [CONTRIBUTING.md](https://github.com/dimimikadze/create-social-network/blob/master/CONTRIBUTING.md) before submitting a Pull Request to the project.

## License

[MIT License](https://github.com/udilia/create-social-network/blob/master/LICENSE.md) Copyright (c) 2019 [udilia](https://udilia.com/)
[MIT License](https://github.com/dimimikadze/create-social-network/blob/master/LICENSE.md) Copyright (c) 2019 [Dimi Mikadze](https://dimimikadze.com/)
4 changes: 2 additions & 2 deletions lib/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,14 @@
"description": "CLI for Create Social Network.",
"repository": {
"type": "git",
"url": "https://github.com/udilia/create-social-network.git",
"url": "https://github.com/dimimikadze/create-social-network.git",
"directory": "lib"
},
"engines": {
"node": ">=8.10"
},
"bugs": {
"url": "https://github.com/udilia/create-social-network/issues"
"url": "https://github.com/dimimikadze/create-social-network/issues"
},
"files": [
"index.js",
Expand Down
4 changes: 2 additions & 2 deletions lib/utils/cloneRepository.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ const tryGitClone = (url, projectName) => {
* @param {string} projectName
*/
module.exports = projectName => {
const httpsUrl = 'https://github.com/udilia/create-social-network.git';
const sshUrl = '[email protected]:udilia/create-social-network.git';
const httpsUrl = 'https://github.com/dimimikadze/create-social-network.git';
const sshUrl = '[email protected]:dimimikadze/create-social-network.git';
const root = path.resolve(projectName);

console.log();
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,10 @@
],
"repository": {
"type": "git",
"url": "https://github.com/udilia/create-social-network.git"
"url": "https://github.com/dimimikadze/create-social-network.git"
},
"bugs": {
"url": "https://github.com/udilia/create-social-network/issues"
"url": "https://github.com/dimimikadze/create-social-network/issues"
},
"engines": {
"node": ">=8.10"
Expand Down

0 comments on commit 52c1b02

Please sign in to comment.