- Currently available at: https://adp.spokenweb.ca
- UX process: https://sites.google.com/view/archiveofthedigitalpresent/home
- Webflow prototype: https://adp-v12.webflow.io/
- Use SCP to download the contents of the folder:
$ scp -r username@alt.spokenweb.ca:~/www/adp path/to/local/dir
- Follow the below commands to run the project:
$ cd ADP_Front/webapp
$ npm install
$ ng build
When building on the production server, run
$ ng build --prod
- Strapi is temporarily accessible at https://strapi-adp.spokenweb.ca/admin
- Here, entries can be added, deleted, edited, published, etc. (It's a reasonably intuitive website)
cd
into thestrapi
directory on the compute canada server at:
~/www/adp/strapidb/
- Use MySQL from command line:
$ mysql -u sweb -p
- Enter the password
- Please, select the correct database, look at the tables, select them and change the publish time to now:
use adpbase;
show tables;
select * from ...;
update ... SET published_at = now();