Нет описания

Andrew Swistak 84a299afc3 Add setup documentation 6 лет назад
app 4ac8760b19 Implement frontend test samples, as a proof-of-concept 6 лет назад
bin 22d2a6569c Install webpacker and React 7 лет назад
config 36b7a64e15 Parameterize `config/database.yml` 6 лет назад
db 7307985694 Fix Rubocop lint errors 6 лет назад
docs 84a299afc3 Add setup documentation 6 лет назад
lib e437bb556d Be very explicit about docker DB env vars 6 лет назад
log 78560febd9 initialize repo with blank rails app 7 лет назад
public 78560febd9 initialize repo with blank rails app 7 лет назад
spec 4ac8760b19 Implement frontend test samples, as a proof-of-concept 6 лет назад
storage 78560febd9 initialize repo with blank rails app 7 лет назад
tmp 78560febd9 initialize repo with blank rails app 7 лет назад
vendor 78560febd9 initialize repo with blank rails app 7 лет назад
.browserslistrc 86c6c54329 Specify targetted browsers 6 лет назад
.dockerignore a789123d8f Ignore coverage directory 6 лет назад
.env.template 84a299afc3 Add setup documentation 6 лет назад
.eslintrc.js e21f57b2f3 Fix false-positive lint errors for tests 6 лет назад
.gitignore 339a5756c1 Add coverage dir to gitignore 6 лет назад
.prettierrc.js 06400b04db Fix lint warnings 6 лет назад
.rspec 4ba46674e5 Randomize specs 6 лет назад
.rubocop.yml 6b0037969b Add more rubocop cop configurations 6 лет назад
.ruby-version 77bea4c692 Bump to ruby 2.6.3 6 лет назад
.travis.yml b9ac3ef3be Specify docker-compose config file in .travis.yml 6 лет назад
CONTRIBUTING.md a9e2a5c4d4 Add CONTRIBUTING and LICENSE files 6 лет назад
Dockerfile 70aedc089d Re-install prod container packages, but with cleanup 6 лет назад
Gemfile 7307985694 Fix Rubocop lint errors 6 лет назад
Gemfile.lock 86fea9ce80 Update rspec-rails 6 лет назад
LICENSE.md a9e2a5c4d4 Add CONTRIBUTING and LICENSE files 6 лет назад
Procfile.dev 6478cc98bd Set up React with HMR 6 лет назад
README.md 84a299afc3 Add setup documentation 6 лет назад
Rakefile 7307985694 Fix Rubocop lint errors 6 лет назад
babel.config.js 4b0dcdfbd6 Refrain from polyfilling until we know we want it 6 лет назад
config.ru 7307985694 Fix Rubocop lint errors 6 лет назад
docker-compose.ci.yml e437bb556d Be very explicit about docker DB env vars 6 лет назад
docker-compose.yml c2e542cc49 Fix docker-compose react-hot-loader 6 лет назад
jsconfig.json ac92fdd8e4 Add TSServer configuration file 6 лет назад
package.json 4b0dcdfbd6 Refrain from polyfilling until we know we want it 6 лет назад
postcss.config.js d301462241 Move .postcssrc.yml to postcss.config.js 6 лет назад
yarn.lock 4b0dcdfbd6 Refrain from polyfilling until we know we want it 6 лет назад

README.md

Pokemon.trade

Pokemon.trade is a website connecting fellow Pokémon fans together to find and trade Pokémon.

Development Quickstart

With Docker and Docker Compose

Obviously, make sure you have docker and docker-compose installed before proceeding.

Although not recommended for long term development, you can use the docker-compose.yml file to quickly setup a local environment that supports on-the-fly editting and hot-reloading of site components.

# Copy the .env template to .env
# After copying, you should edit the configuration as needed.
cp .env{.template,}

docker-compose up --build -d
docker-compose exec web rails db:create db:schema:load

Testing via Docker and Docker Compose

docker-compose -f docker-compose.ci.yml up -d

docker-compose -f docker-compose.ci.yml run --rm test_web rails db:wait_for_init db:create spec
docker-compose -f docker-compose.ci.yml run --rm test_web yarn test
docker-compose -f docker-compose.ci.yml run --rm test_web rubocop
docker-compose -f docker-compose.ci.yml run --rm test_web yarn lint

docker-compose -f docker-compose.yml down

For setting up a local environment or further information, please see the extended setup documentation.