mirror of
https://github.com/wassname/talk.git
synced 2026-06-29 08:49:56 +08:00
14 lines
500 B
Bash
Executable File
14 lines
500 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# install selenium
|
|
selenium-standalone install
|
|
|
|
# Creating Admin Test User
|
|
{ echo admin@test.com; echo test; echo test; echo Admin Test User; echo admin;} | dotenv ./bin/cli-users create
|
|
|
|
# Creating Moderator Test User
|
|
{ echo moderator@test.com; echo test; echo test; echo Moderator Test User; echo moderator;} | dotenv ./bin/cli-users create
|
|
|
|
# Creating Commenter Test User
|
|
{ echo test@test.com; echo test; echo test; echo Commenter Test User; echo '';} | dotenv ./bin/cli-users create
|