Skip to content
This repository has been archived by the owner on Mar 19, 2023. It is now read-only.

Commit

Permalink
Merge pull request #1 from austinrovge/projects
Browse files Browse the repository at this point in the history
added ability application pulls projects from github, frontend dynamically pulls projects from server to display
  • Loading branch information
arovge committed Nov 22, 2018
2 parents 4803b0b + 533e93c commit ab51107
Show file tree
Hide file tree
Showing 32 changed files with 9,978 additions and 9,419 deletions.
17 changes: 17 additions & 0 deletions .eslintrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
{
"parser": "babel-eslint",
"plugins": [
"react"
],
"parserOptions": {
"ecmaFeatures": {
"jsx": true
},
"sourceType": "module",
"ecmaVersion": 6
},
"rules": {
"semi": 0,
"indent": ["error", "tab"]
}
}
24 changes: 0 additions & 24 deletions .eslintrc.json

This file was deleted.

4 changes: 2 additions & 2 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
MIT License

Copyright (c) 2017 Austin Rovge
Copyright (c) 2018 Austin Rovge

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand All @@ -18,4 +18,4 @@ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
SOFTWARE.
17 changes: 13 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,16 +1,25 @@
# ar-website
This repository contains the source code for my personal website.

### Installation
#### Downloading and compiling the code
### Setup
#### Cloning and Installation
The repository has to be cloned and node packages need to first be installed.

``` bash
$ git clone https://github.com/austinrovge/austin-website.git
$ cd austin-website
$ git clone https://github.com/austinrovge/ar-website.git
$ cd ar-website
$ npm install -g
```

#### SQL Server
MySQL will need to be installed on your machine to support storing projects.

```bash
$ npm run start-create-db
```

The NPM command will start the MySQL service and will create the database and table needed to store project information in.

### Server Environments
#### Production
A production environment can be built and started on port 80 with these commands:
Expand Down
Loading

0 comments on commit ab51107

Please sign in to comment.