Re: [Arches] Where is django configuration file my_project.settings

2019-05-16 Thread Adam Cox
Ok, are you using this documentation for setting up Apache? https://arches.readthedocs.io/en/stable/serving-arches-with-apache/#setup-apache Now that I'm looking at it, I think the paths in it should be updated to use the my_project context that we use in the main installation instructions. Looks

Re: [Arches] Where is django configuration file my_project.settings

2019-05-16 Thread Martha S
Yes, Adam, those were the instructions I followed. Looks like I have more configuring to do before I can share the link with the programmer, but this change you just recommended opens Arches to the What is Arches page from my desktop. Big step forward, thank you. Thanks, Martha On Thursday,

[Arches] Re: Where is django configuration file my_project.settings

2019-05-16 Thread Adam Cox
Hi Colin, try python manage.py runserver 0.0.0.0:8000 (You can shorted 0.0.0.0 to just 0 in my experience.) You should then be able to access through a browser at :8000, as long as port 8000 is open. The message you see about settings is referring to my_project/settings.py.

Re: [Arches] Where is django configuration file my_project.settings

2019-05-16 Thread Adam Cox
Hi Martha, I just unmarked Colin's answer as a duplicate so that I could address the settings question he had. In short, if you are having trouble, I think it must be a different issue; it sounds like his development server was running fine. Cheers, Adam On Thu, May 16, 2019 at 1:25 PM Martha S

[Arches] Re: Formats

2019-05-16 Thread Alina Myklebust
Hi Nagamori, Arches can hold data of all types and formats. For more information on data considerations, please take a look at this page on the Arches Project website: https://www.archesproject.org/implementation-considerations/ Cheers, Alina The Arches Project Team On Tuesday, May 14,

Re: [Arches] Re: Where is django configuration file my_project.settings

2019-05-16 Thread Colin Wu
Thanks Adam. Aside from adding the 0.0.0.0:8000, one must also modify the AMLOWED_HOSTS parameter in settings.py toALLOWED_HOSTS=["*"]

Re: [Arches] Where is django configuration file my_project.settings

2019-05-16 Thread Martha S
My development server is running fine, too, Adam, This problem surfaces when we try to deploy in Apache. Martha On Thursday, May 16, 2019 at 11:40:56 AM UTC-7, Adam Cox wrote: > > Hi Martha, > > I just unmarked Colin's answer as a duplicate so that I could address the > settings question he

Re: [Arches] Re: Where is django configuration file my_project.settings

2019-05-16 Thread Adam Cox
Yes, that's right, though it's only necessary if you have DEBUG = False. If you are in a real production environment, it is much better to make an explicit list in ALLOWED_HOSTS rather than use the wildcard. This could look like ALLOWED_HOSTS = ['localhost', '127.0.0.1', 'www.mysite.com']

[Arches] spotless skin

2019-05-16 Thread spotless skin
Beautiful & Spotless Skin - Melasma Hits & Missess Melasma is chronic & is prevalent across the globe. Commonly affecting women, Melasma can mimic other pigmentary disorders of the face. Accurate diagnosis is critical for effective treatment. If you don’t diagnose & treat it correctly, you can

Re: [Arches] arches 4.4.1: problem loading pages

2019-05-16 Thread Marlene Gilles
Hi Adam, Thanks for your help. I did some basic tests with yarn and it seemed to work normally. However, numeral.js could not be found. So I installed it with "npm install numeral" and then pasted the Numeral folder into my static folder. I'm not sure it's the cleanest solution, but it works

[Arches] Where is django configuration file my_project.settings

2019-05-16 Thread Martha S
Since Colin's thread was locked and re-directed, I'm using the same title to respond to his comment regarding my_project.settings. When we reached the same point with the same problem, I examined some of the stack trace. As Colin is doing, I am installing arches on a new machine, not upgrading