update script
This commit is contained in:
parent
51ecbd5b38
commit
d65a81ccc9
17
README.md
17
README.md
@ -1,18 +1,25 @@
|
||||
[](https://app.netlify.com/sites/auditorytraining/deploys)
|
||||
|
||||
# Auditory Training Resources
|
||||
|
||||
<p align="center">
|
||||
<img src="assets/atr_table.png" width="800" />
|
||||
</p>
|
||||
|
||||
## Purpose
|
||||
|
||||
There are many auditory training resources that often have unique requirements. A patient may require an Android application, or help with a specific skill. The patient may also already be at a specific skill level, and want a resource that is more challenging or easier depending on age group. The goal of this application is to provide an accessible website for patients and providers to easily find recommendations for auditory training development resources based on their unique requirements.
|
||||
|
||||
## Production Deployment
|
||||
|
||||
### Docker Method
|
||||
|
||||
Currently this is being deployed through docker on a single VPS. Using the included docker-compose you can start the production server with the following command:
|
||||
|
||||
```sh
|
||||
docker-compose up --build -d
|
||||
```
|
||||
|
||||
This should deploy the instance on localhost:1234
|
||||
|
||||
I have this hosted behind a reverse proxy (nginx) which routes traffic from the auditorytraining.info URI to localhost:1234. You can of course change this to any port that works best in your configuration!
|
||||
@ -20,12 +27,14 @@ I have this hosted behind a reverse proxy (nginx) which routes traffic from the
|
||||
A more permanent hosting solution through the University is in the works.
|
||||
|
||||
### Netlify
|
||||
|
||||
As of recently, the project has been migrated to netlify enabling us to automate the deployment process and provide a more reliable experience for the end user.
|
||||
|
||||
## Directory Breakdown
|
||||
|
||||
Many directories have associated README's to provide related directory information.
|
||||
|
||||
- ***src/*** - source directory for nextjs frontend/backend application.
|
||||
- ***data/*** - Non-application (application referring to excelProcessor or frontend) specific data such as the ATR data excel sheet which has multiple uses in each application.
|
||||
- ***prisma/*** - Prisma schema and seeding of admin account (specified in env).
|
||||
- ***excelProcessor/*** - Main excel processing backend server and CLI utility for uploading the ATR data excel sheet to MongoDB.
|
||||
- **_src/_** - source directory for nextjs frontend/backend application.
|
||||
- **_data/_** - Non-application (application referring to excelProcessor or frontend) specific data such as the ATR data excel sheet which has multiple uses in each application.
|
||||
- **_prisma/_** - Prisma schema and seeding of admin account (specified in env).
|
||||
- **_excelProcessor/_** - Main excel processing backend server and CLI utility for uploading the ATR data excel sheet to MongoDB.
|
||||
|
@ -1,4 +1,5 @@
|
||||
# Data
|
||||
Backend data is placed in this repository. Currently this consists of the auditory training resources
|
||||
|
||||
Utilize `base_template.xlsx` as your starting point when creating auditory training resource data in excell form. This structure is what the upload script will look for. If your excell sheet is missing any of these required fields the sheet parser will fail and notify you that the upload could not complete.
|
||||
# Data
|
||||
|
||||
Backend data is placed in this repository. Currently this consists of the auditory training resources
|
||||
|
||||
Utilize `base_template.xlsx` as your starting point when creating auditory training resource data in excell form. This structure is what the upload script will look for. If your excell sheet is missing any of these required fields the sheet parser will fail and notify you that the upload could not complete.
|
||||
|
@ -1,4 +1,4 @@
|
||||
version: '3'
|
||||
version: "3"
|
||||
|
||||
services:
|
||||
uiowa-atr:
|
||||
|
@ -1,29 +1,39 @@
|
||||
# Importing Data
|
||||
|
||||
The purpose of the import script is to take the formatted excel sheet (found in /data/atr_data.xlsx) and upload it to the remote mongoDB server.
|
||||
|
||||
# Tutorial
|
||||
This script is currently in early stages and was initially designed to simplify uploading the assets until a more permanent web UI could be built for the task. Therefore this utility is very low-level and likely requires some tinkering outside its intended use case.
|
||||
|
||||
## Setup
|
||||
1. Open import/main.py
|
||||
2. Configure the two globals:
|
||||
```python
|
||||
MONGO_URL = "enter mongo DB URL"
|
||||
MONGO_DB = "name of DB"
|
||||
```
|
||||
3. Make sure dependencies are intalled with `poetry install`
|
||||
|
||||
## Run
|
||||
The script takes one parameter which is simply the path of your excel sheet.
|
||||
```sh
|
||||
poetry run python import/main.py $PATH
|
||||
```
|
||||
For example; if uploading the data provided in this repository you can run the following:
|
||||
```sh
|
||||
poetry run python import/main.py ../data/atr_data.xlsx
|
||||
```
|
||||
You should see output showing the individual objects it extracted from your excel sheet along with a success message at the end.
|
||||
|
||||
# Expected Data Format
|
||||
See {project_root}/data/atr_data.xlsx
|
||||
# Importing Data
|
||||
|
||||
The purpose of the import script is to take the formatted excel sheet (found in /data/atr_data.xlsx) and upload it to the remote mongoDB server.
|
||||
|
||||
# Tutorial
|
||||
|
||||
This script is currently in early stages and was initially designed to simplify uploading the assets until a more permanent web UI could be built for the task. Therefore this utility is very low-level and likely requires some tinkering outside its intended use case.
|
||||
|
||||
## Setup
|
||||
|
||||
1. Open import/main.py
|
||||
2. Configure the two globals:
|
||||
|
||||
```python
|
||||
MONGO_URL = "enter mongo DB URL"
|
||||
MONGO_DB = "name of DB"
|
||||
```
|
||||
|
||||
3. Make sure dependencies are intalled with `poetry install`
|
||||
|
||||
## Run
|
||||
|
||||
The script takes one parameter which is simply the path of your excel sheet.
|
||||
|
||||
```sh
|
||||
poetry run python import/main.py $PATH
|
||||
```
|
||||
|
||||
For example; if uploading the data provided in this repository you can run the following:
|
||||
|
||||
```sh
|
||||
poetry run python import/main.py ../data/atr_data.xlsx
|
||||
```
|
||||
|
||||
You should see output showing the individual objects it extracted from your excel sheet along with a success message at the end.
|
||||
|
||||
# Expected Data Format
|
||||
|
||||
See {project_root}/data/atr_data.xlsx
|
||||
|
@ -25,7 +25,7 @@ const MyApp: AppType<{ session: Session | null }> = ({
|
||||
<script
|
||||
defer
|
||||
src="https://analytics.brandonegger.com/script.js"
|
||||
data-website-id="121b7ea1-1851-437f-9f3d-4e376487bea0"
|
||||
data-website-id="3e1b5a25-9eb9-4dc5-a1d2-259bf73b847f"
|
||||
></script>
|
||||
) : null}
|
||||
</Head>
|
||||
|
@ -5,30 +5,30 @@ const config = {
|
||||
extend: {
|
||||
keyframes: {
|
||||
expand_in_out: {
|
||||
'0%, 100%': { transform: 'scale(1)' },
|
||||
'50%': { transform: 'scale(1.1)' },
|
||||
"0%, 100%": { transform: "scale(1)" },
|
||||
"50%": { transform: "scale(1.1)" },
|
||||
},
|
||||
slide_left_full: {
|
||||
'0%': { transform: 'translate(0%)' },
|
||||
'100%': { transform: 'translate(-50%)' },
|
||||
"0%": { transform: "translate(0%)" },
|
||||
"100%": { transform: "translate(-50%)" },
|
||||
},
|
||||
slide_right_full: {
|
||||
'0%': { transform: 'translate(-50%)' },
|
||||
'100%': { transform: 'translate(0%)' },
|
||||
"0%": { transform: "translate(-50%)" },
|
||||
"100%": { transform: "translate(0%)" },
|
||||
},
|
||||
wiggle_rotate: {
|
||||
'0%, 60%, 100%': { transform: 'rotate(0deg)' },
|
||||
'42%': { transform: 'rotate(-6deg)' },
|
||||
'50%': { transform: 'rotate(4deg)' },
|
||||
'6%, 30%': { transform: 'rotate(24deg)' },
|
||||
'18%': { transform: 'rotate(-12deg)' },
|
||||
"0%, 60%, 100%": { transform: "rotate(0deg)" },
|
||||
"42%": { transform: "rotate(-6deg)" },
|
||||
"50%": { transform: "rotate(4deg)" },
|
||||
"6%, 30%": { transform: "rotate(24deg)" },
|
||||
"18%": { transform: "rotate(-12deg)" },
|
||||
},
|
||||
},
|
||||
animation: {
|
||||
expand_in_out: 'expand_in_out 2s ease-in-out infinite',
|
||||
slide_search_page: 'slide_left_full 0.5s ease-in-out',
|
||||
slide_search_page_backwards: 'slide_right_full 0.5s ease-in-out',
|
||||
hand_wave: 'wiggle_rotate 1.5s ease-in-out infinite',
|
||||
expand_in_out: "expand_in_out 2s ease-in-out infinite",
|
||||
slide_search_page: "slide_left_full 0.5s ease-in-out",
|
||||
slide_search_page_backwards: "slide_right_full 0.5s ease-in-out",
|
||||
hand_wave: "wiggle_rotate 1.5s ease-in-out infinite",
|
||||
},
|
||||
},
|
||||
},
|
||||
|
Loading…
x
Reference in New Issue
Block a user